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_database_backup_destinations" {
source="./modules/oci/d/oci_database_backup_destinations"# compartment_id - (required) is a type of stringcompartment_id=null# type - (optional) is a type of stringtype=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_database_backup_destinations""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# type - (optional) is a type of stringtype=var.typedynamic"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"backup_destinations" {
description="returns a list of object"value=data.oci_database_backup_destinations.this.backup_destinations
}
output"id" {
description="returns a string"value=data.oci_database_backup_destinations.this.id
}
output"this" {
value=oci_database_backup_destinations.this
}