Files
but3-iac/tp-cloud/terraform/environments/dev/outputs.tf

19 lines
335 B
Terraform
Raw Normal View History

2025-12-04 10:59:02 +01:00
output "frontend_public_ip" {
2025-12-04 11:09:04 +01:00
value = module.compute.frontend_public_ip
2025-12-03 16:12:20 +00:00
}
2025-12-04 11:12:14 +01:00
output "internal_ips" {
value = module.compute.internal_ips
2025-12-04 10:59:02 +01:00
}
output "vpc_id" {
2025-12-04 11:09:04 +01:00
value = module.network.vpc_id
2025-12-04 10:59:02 +01:00
}
2025-12-04 11:12:14 +01:00
output "service_account_email" {
value = module.iam.service_account_email
2025-12-04 10:59:02 +01:00
}
2025-12-04 11:17:38 +01:00
output "subnets_ids" {
value = module.network.subnets_ids
}