36 lines
918 B
HCL
Executable File
36 lines
918 B
HCL
Executable File
output "compartment_id" {
|
|
description = "Compartment used by the lab."
|
|
value = local.lab_compartment_id
|
|
}
|
|
|
|
output "vcn_id" {
|
|
description = "VCN OCID."
|
|
value = module.network.vcn_id
|
|
}
|
|
|
|
output "private_subnet_id" {
|
|
description = "Private subnet OCID."
|
|
value = module.network.private_subnet_id
|
|
}
|
|
|
|
output "database_nsg_id" {
|
|
description = "Database NSG OCID."
|
|
value = module.network.database_nsg_id
|
|
}
|
|
|
|
output "autonomous_database_id" {
|
|
description = "Autonomous Database OCID."
|
|
value = module.autonomous_database.autonomous_database_id
|
|
}
|
|
|
|
output "autonomous_database_private_endpoint" {
|
|
description = "Autonomous Database private endpoint."
|
|
value = module.autonomous_database.private_endpoint
|
|
}
|
|
|
|
output "bastion_public_ip" {
|
|
description = "Optional bastion public IP."
|
|
value = var.enable_compute_bastion ? module.compute_bastion[0].public_ip : null
|
|
}
|
|
|