tf-oci-ans-selfhost-dev/terraform_plans/compartment.tf

8 lines
246 B
Terraform
Raw Permalink Normal View History

2023-07-31 10:48:44 -04:00
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
}