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_marketplace_publications" {
source="./modules/oci/d/oci_marketplace_publications"# compartment_id - (required) is a type of stringcompartment_id=null# listing_type - (required) is a type of stringlisting_type=null# name - (optional) is a type of list of stringname=[]
# operating_systems - (optional) is a type of list of stringoperating_systems=[]
# publication_id - (optional) is a type of stringpublication_id=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_marketplace_publications""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# listing_type - (required) is a type of stringlisting_type=var.listing_type# name - (optional) is a type of list of stringname=var.name# operating_systems - (optional) is a type of list of stringoperating_systems=var.operating_systems# publication_id - (optional) is a type of stringpublication_id=var.publication_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_marketplace_publications.this.id
}
output"publications" {
description="returns a list of object"value=data.oci_marketplace_publications.this.publications
}
output"this" {
value=oci_marketplace_publications.this
}