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_artifacts_container_images" {
source="./modules/oci/d/oci_artifacts_container_images"# compartment_id - (required) is a type of stringcompartment_id=null# compartment_id_in_subtree - (optional) is a type of boolcompartment_id_in_subtree=null# display_name - (optional) is a type of stringdisplay_name=null# image_id - (optional) is a type of stringimage_id=null# is_versioned - (optional) is a type of boolis_versioned=null# repository_id - (optional) is a type of stringrepository_id=null# repository_name - (optional) is a type of stringrepository_name=null# state - (optional) is a type of stringstate=null# version - (optional) is a type of stringversion=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_artifacts_container_images""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# compartment_id_in_subtree - (optional) is a type of boolcompartment_id_in_subtree=var.compartment_id_in_subtree# display_name - (optional) is a type of stringdisplay_name=var.display_name# image_id - (optional) is a type of stringimage_id=var.image_id# is_versioned - (optional) is a type of boolis_versioned=var.is_versioned# repository_id - (optional) is a type of stringrepository_id=var.repository_id# repository_name - (optional) is a type of stringrepository_name=var.repository_name# state - (optional) is a type of stringstate=var.state# version - (optional) is a type of stringversion=var.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"container_image_collection" {
description="returns a list of object"value=data.oci_artifacts_container_images.this.container_image_collection
}
output"id" {
description="returns a string"value=data.oci_artifacts_container_images.this.id
}
output"this" {
value=oci_artifacts_container_images.this
}