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

14 lines
311 B
Terraform
Raw Normal View History

2025-12-04 08:17:10 +00:00
output "vpc_id" {
description = "id du vpc"
2025-12-04 10:32:17 +00:00
value = google_compute_network.vpc.id
2025-12-04 08:17:10 +00:00
}
output "subnets" {
description = "ids of subnets"
value = {
2025-12-04 10:32:17 +00:00
fr_id = google_compute_subnetwork.frontend.id
ba_id = google_compute_subnetwork.backend.id
dat_id = google_compute_subnetwork.database.id
2025-12-04 08:17:10 +00:00
}
}