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

25 lines
685 B
Terraform
Raw Normal View History

2025-12-03 17:15:51 +01:00
output "vpc_terraform_output" {
value = google_compute_network.vpc_terraform.id
2025-12-03 15:21:08 +00:00
}
2025-12-03 17:15:51 +01:00
output "list_id" {
value = {
frontend = google_compute_subnetwork.subnet_frontend.id
backend = google_compute_subnetwork.subnet_backend.id
database = google_compute_subnetwork.subnet_database.id
}
2025-12-04 09:31:27 +01:00
}
output "vpc_id" {
2025-12-04 09:34:34 +01:00
description = "ID du VPC créé"
value = google_compute_network.vpc_terraform.id
2025-12-04 09:31:27 +01:00
}
output "subnets" {
2025-12-04 09:34:34 +01:00
description = "IDs des subnets du VPC"
2025-12-04 09:31:27 +01:00
value = {
2025-12-04 09:34:34 +01:00
frontend = google_compute_subnetwork.subnet_frontend.id
backend = google_compute_subnetwork.subnet_backend.id
database = google_compute_subnetwork.subnet_database.id
2025-12-04 09:31:27 +01:00
}
2025-12-04 09:34:34 +01:00
}