terraform-oci-free/oci.main.tf

8 lines
252 B
Terraform
Raw Normal View History

2024-05-24 16:10:19 +06:00
resource "oci_identity_compartment" "compartment" {
compartment_id = var.tenancy_id
name = join("", [var.prefix, "compartment"])
description = local.common_description
enable_delete = true
freeform_tags = local.freeform_tags
}