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

38 lines
682 B
Terraform
Raw Normal View History

2025-12-04 10:59:02 +01:00
output "internal_ips" {
2025-12-04 11:09:04 +01:00
value = module.compute.internal_ips
2025-12-03 16:12:20 +00:00
}
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 10:59:02 +01:00
output "instance_names" {
2025-12-04 11:09:04 +01:00
value = module.compute.instance_names
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" {
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:11:02 +01:00
output "frontend_subnet_id" {
value = google_compute_subnetwork.frontend.id
}
output "backend_subnet_id" {
value = google_compute_subnetwork.backend.id
}
output "database_subnet_id" {
value = google_compute_subnetwork.database.id
2025-12-04 10:59:02 +01:00
}