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_accepted_agreements" {
source="./modules/oci/d/oci_marketplace_accepted_agreements"# accepted_agreement_id - (optional) is a type of stringaccepted_agreement_id=null# compartment_id - (required) is a type of stringcompartment_id=null# display_name - (optional) is a type of stringdisplay_name=null# listing_id - (optional) is a type of stringlisting_id=null# package_version - (optional) is a type of stringpackage_version=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_marketplace_accepted_agreements""this" {
# accepted_agreement_id - (optional) is a type of stringaccepted_agreement_id=var.accepted_agreement_id# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# display_name - (optional) is a type of stringdisplay_name=var.display_name# listing_id - (optional) is a type of stringlisting_id=var.listing_id# package_version - (optional) is a type of stringpackage_version=var.package_versiondynamic"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"accepted_agreements" {
description="returns a list of object"value=data.oci_marketplace_accepted_agreements.this.accepted_agreements
}
output"id" {
description="returns a string"value=data.oci_marketplace_accepted_agreements.this.id
}
output"this" {
value=oci_marketplace_accepted_agreements.this
}