nixfiles/tf/oci_common_private_network/internet_gateway.tf
2025-07-13 05:10:57 -07:00

13 lines
No EOL
253 B
HCL

resource "oci_core_internet_gateway" "this" {
display_name = "internet"
compartment_id = var.tenancy_ocid
vcn_id = local.vcn.id
}
locals {
igw = oci_core_internet_gateway.this
}
output "internet_gateway_id" {
value = local.igw.id
}