2024-12-04 16:54:36 +01:00
|
|
|
output "vpc_id" {
|
|
|
|
value = google_compute_network.tp07.id
|
|
|
|
}
|
|
|
|
|
|
|
|
output "subnets_ids" {
|
|
|
|
value = {
|
2024-12-05 09:42:58 +01:00
|
|
|
frontend = google_compute_subnetwork.tp07-frontend.id,
|
|
|
|
backend = google_compute_subnetwork.tp07-backend.id,
|
2024-12-04 16:54:36 +01:00
|
|
|
database = google_compute_subnetwork.tp07-database.id
|
|
|
|
}
|
|
|
|
}
|