You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"oci_streaming_connect_harnesses" {
source="./modules/oci/d/oci_streaming_connect_harnesses"# compartment_id - (required) is a type of stringcompartment_id=null# name - (optional) is a type of stringname=null# state - (optional) is a type of stringstate=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_streaming_connect_harnesses""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# name - (optional) is a type of stringname=var.name# state - (optional) is a type of stringstate=var.statedynamic"filter" {
for_each=var.filtercontent {
# name - (required) is a type of stringname=filter.value["name"]
# regex - (optional) is a type of boolregex=filter.value["regex"]
# values - (required) is a type of list of stringvalues=filter.value["values"]
}
}
}
output"connect_harness" {
description="returns a list of object"value=data.oci_streaming_connect_harnesses.this.connect_harness
}
output"id" {
description="returns a string"value=data.oci_streaming_connect_harnesses.this.id
}
output"this" {
value=oci_streaming_connect_harnesses.this
}