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_repository" {
source="./modules/oci/r/oci_artifacts_container_repository"# compartment_id - (required) is a type of stringcompartment_id=null# display_name - (required) is a type of stringdisplay_name=null# is_immutable - (optional) is a type of boolis_immutable=null# is_public - (optional) is a type of boolis_public=nullreadme=[{
content =null
format =null
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_artifacts_container_repository""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# display_name - (required) is a type of stringdisplay_name=var.display_name# is_immutable - (optional) is a type of boolis_immutable=var.is_immutable# is_public - (optional) is a type of boolis_public=var.is_publicdynamic"readme" {
for_each=var.readmecontent {
# content - (required) is a type of stringcontent=readme.value["content"]
# format - (required) is a type of stringformat=readme.value["format"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}