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_dns_resolver_endpoints" {
source="./modules/oci/d/oci_dns_resolver_endpoints"# name - (optional) is a type of stringname=null# resolver_id - (required) is a type of stringresolver_id=null# scope - (required) is a type of stringscope=null# state - (optional) is a type of stringstate=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_dns_resolver_endpoints""this" {
# name - (optional) is a type of stringname=var.name# resolver_id - (required) is a type of stringresolver_id=var.resolver_id# scope - (required) is a type of stringscope=var.scope# 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"id" {
description="returns a string"value=data.oci_dns_resolver_endpoints.this.id
}
output"resolver_endpoints" {
description="returns a list of object"value=data.oci_dns_resolver_endpoints.this.resolver_endpoints
}
output"this" {
value=oci_dns_resolver_endpoints.this
}