This commit is contained in:
2025-12-03 17:15:51 +01:00
parent 132d24b930
commit d367c92d14
5 changed files with 118 additions and 62 deletions

View File

@@ -1,12 +1,11 @@
output "vpc_id" {
value = google_compute_network.vpc.id
}
output "subnets" {
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
output "vpc_terraform_output" {
value = google_compute_network.vpc_terraform.id
}
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
}
}