2025-12-03 16:59:05 +01:00
|
|
|
output "vpc_terraform_output" {
|
2025-12-03 17:04:11 +01:00
|
|
|
value = google_compute_network.vpc.id
|
2025-12-03 16:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-03 16:59:05 +01:00
|
|
|
output "list_id" {
|
2025-12-03 16:10:30 +01:00
|
|
|
value = {
|
2025-12-03 16:59:05 +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-03 16:10:30 +01:00
|
|
|
}
|
|
|
|
|
}
|