11 lines
274 B
HCL
11 lines
274 B
HCL
output "vpc_id" {
|
|
value = google_compute_network.tp07.id
|
|
}
|
|
|
|
output "subnets_ids" {
|
|
value = {
|
|
frontend = google_compute_subnetwork.tp07-frontend.id
|
|
backend = google_compute_subnetwork.tp07-backend.id
|
|
database = google_compute_subnetwork.tp07-database.id
|
|
}
|
|
} |