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