2024-12-06 15:51:04 +01:00
|
|
|
output "vpc"{
|
|
|
|
value = google_compute_network.vpc.id
|
|
|
|
}
|
|
|
|
|
|
|
|
output "subnet" {
|
|
|
|
value = {
|
|
|
|
frontend = google_compute_subnetwork.subnet_front.id,
|
|
|
|
backend = google_compute_subnetwork.subnet_back.id,
|
|
|
|
database = google_compute_subnetwork.subnet_db.id
|
|
|
|
}
|
|
|
|
}
|