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

30 lines
494 B
Terraform
Raw Normal View History

2025-12-04 10:59:02 +01:00
output "internal_ips" {
value = module.compute.ip_interne
2025-12-03 16:12:20 +00:00
}
2025-12-04 10:59:02 +01:00
output "frontend_public_ip" {
value = module.compute.ip_public_frontend
2025-12-03 16:12:20 +00:00
}
2025-12-04 10:59:02 +01:00
output "instance_names" {
value = module.compute.nom_instance
2025-12-03 16:12:20 +00:00
}
2025-12-04 10:17:49 +01:00
output "service_account_email" {
value = module.iam.service_account_email
}
2025-12-03 16:12:20 +00:00
2025-12-04 10:59:02 +01:00
output "service_account_key" {
sensitive = true
value = module.iam.service_account_key
}
output "vpc_id" {
value = module.network.vpc
}
output "subnets_ids" {
value = module.network.subnets
}