mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
16 lines
No EOL
333 B
HCL
16 lines
No EOL
333 B
HCL
resource "oci_core_subnet" "this" {
|
|
cidr_block = oci_core_vcn.this.cidr_blocks.0
|
|
compartment_id = var.tenancy_ocid
|
|
vcn_id = oci_core_vcn.this.id
|
|
|
|
display_name = oci_core_vcn.this.display_name
|
|
dns_label = "subnet"
|
|
}
|
|
|
|
locals {
|
|
subnet = oci_core_subnet.this
|
|
}
|
|
|
|
output "subnet_id" {
|
|
value = local.subnet.id
|
|
} |