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_db_home_patch_history_entries" {
source="./modules/oci/d/oci_database_db_home_patch_history_entries"# db_home_id - (required) is a type of stringdb_home_id=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_database_db_home_patch_history_entries""this" {
# db_home_id - (required) is a type of stringdb_home_id=var.db_home_iddynamic"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_database_db_home_patch_history_entries.this.id
}
output"patch_history_entries" {
description="returns a list of object"value=data.oci_database_db_home_patch_history_entries.this.patch_history_entries
}
output"this" {
value=oci_database_db_home_patch_history_entries.this
}