Files
oracle-deep-data-security-lab/terraform/modules/network/outputs.tf
Rodrigo db3d68af10
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled
Improve Deep Data Security lab scenarios
2026-05-13 16:13:04 -03:00

26 lines
586 B
HCL
Executable File

output "vcn_id" {
description = "VCN OCID."
value = oci_core_vcn.this.id
}
output "private_subnet_id" {
description = "Private subnet OCID."
value = oci_core_subnet.private.id
}
output "public_subnet_id" {
description = "Public subnet OCID, when created."
value = try(oci_core_subnet.public[0].id, null)
}
output "app_nsg_id" {
description = "Application NSG OCID."
value = oci_core_network_security_group.app.id
}
output "database_nsg_id" {
description = "Database NSG OCID."
value = oci_core_network_security_group.database.id
}