Files
but3-iac/terraform/modules/network/outputs.tf

18 lines
396 B
Terraform
Raw Normal View History

2025-12-04 09:59:27 +01:00
output "vpc_terraform" {
description = "ID du VPC créé"
value = google_compute_network.vpc.id
2025-12-04 10:03:07 +01:00
2025-12-03 17:10:48 +01:00
}
2025-12-04 10:03:07 +01:00
2025-12-04 09:59:27 +01:00
output "subnet_ids" {
description = "Map des IDs des sous-réseaux"
2025-12-03 17:10:48 +01:00
value = {
2025-12-04 09:59:27 +01:00
2025-12-04 10:03:07 +01:00
frontend = google_compute_subnetwork.frontend_network.id
backend = google_compute_subnetwork.backend_network.id
database = google_compute_subnetwork.database_network.id
2025-12-03 17:10:48 +01:00
}
2025-12-04 09:59:27 +01:00
2025-12-04 10:03:07 +01:00
}