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_dataflow_private_endpoints" {
source="./modules/oci/d/oci_dataflow_private_endpoints"# compartment_id - (required) is a type of stringcompartment_id=null# display_name - (optional) is a type of stringdisplay_name=null# display_name_starts_with - (optional) is a type of stringdisplay_name_starts_with=null# owner_principal_id - (optional) is a type of stringowner_principal_id=null# state - (optional) is a type of stringstate=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_dataflow_private_endpoints""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# display_name - (optional) is a type of stringdisplay_name=var.display_name# display_name_starts_with - (optional) is a type of stringdisplay_name_starts_with=var.display_name_starts_with# owner_principal_id - (optional) is a type of stringowner_principal_id=var.owner_principal_id# 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_dataflow_private_endpoints.this.id
}
output"private_endpoint_collection" {
description="returns a list of object"value=data.oci_dataflow_private_endpoints.this.private_endpoint_collection
}
output"this" {
value=oci_dataflow_private_endpoints.this
}