v1.0 — AI Agent Distribution (Docker Compose + Terraform OCI)
This commit is contained in:
14
terraform/registry.tf
Normal file
14
terraform/registry.tf
Normal file
@@ -0,0 +1,14 @@
|
||||
# -----------------------------------------------------------------------------
|
||||
# OCIR Repositories
|
||||
# -----------------------------------------------------------------------------
|
||||
resource "oci_artifacts_container_repository" "backend" {
|
||||
compartment_id = var.compartment_ocid
|
||||
display_name = "${var.ocir_repo_prefix}/backend"
|
||||
is_public = false
|
||||
}
|
||||
|
||||
resource "oci_artifacts_container_repository" "frontend" {
|
||||
compartment_id = var.compartment_ocid
|
||||
display_name = "${var.ocir_repo_prefix}/frontend"
|
||||
is_public = false
|
||||
}
|
||||
Reference in New Issue
Block a user