forked from pierront/but3-iac
12 lines
299 B
HCL
12 lines
299 B
HCL
|
|
output "vpc" {
|
|
value = google_compute_network.vpc_terraform.id
|
|
}
|
|
|
|
output "subnets" {
|
|
value = {
|
|
frontend = google_compute_subnetwork.subnet_frontend.id
|
|
backend = google_compute_subnetwork.subnet_backend.id
|
|
database = google_compute_subnetwork.subnet_database.id
|
|
}
|
|
} |