mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
19 lines
No EOL
404 B
HCL
19 lines
No EOL
404 B
HCL
variable "tenancy_ocid" {
|
|
type = string
|
|
}
|
|
|
|
resource "oci_identity_compartment" "this" {
|
|
# Compartment ID is Tenancy ID for this case
|
|
compartment_id = var.tenancy_ocid
|
|
description = "Compartment for Terraform usage"
|
|
name = "kittywitch-tf"
|
|
|
|
}
|
|
|
|
locals {
|
|
child_compartment_id = oci_identity_compartment.this.compartment_id
|
|
}
|
|
|
|
output "child_compartment_id" {
|
|
value = local.child_compartment_id
|
|
} |