tf-oci-ans-selfhost-dev/terraform_plans/compartment.tf
2023-07-31 10:48:44 -04:00

8 lines
246 B
HCL

resource "oci_identity_compartment" "tf-playground" {
compartment_id = var.tenancy_ocid
description = "Compartment for tf-playground resources."
name = var.compartment_name
freeform_tags = var.tags
enable_delete = true
}