mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-01 10:48:36 +00:00
21 lines
461 B
HCL
21 lines
461 B
HCL
|
|
resource "random_id" "registry" {
|
|
byte_length = 8
|
|
}
|
|
|
|
data "oci_artifacts_container_configuration" "registry" {
|
|
compartment_id = var.compartment_ocid
|
|
}
|
|
|
|
resource "oci_artifacts_container_repository" "registry" {
|
|
compartment_id = var.compartment_ocid
|
|
display_name = "registry-${random_id.registry.hex}"
|
|
is_immutable = false
|
|
is_public = false
|
|
|
|
readme {
|
|
content = "Container registry for ${var.project}"
|
|
format = "text/plain"
|
|
}
|
|
}
|