forked from pierront/but3-iac
11 lines
228 B
HCL
11 lines
228 B
HCL
output "vpc_id" {
|
|
value = google_compute_network.vpc.id
|
|
}
|
|
|
|
output "subnets_ids" {
|
|
value = [
|
|
google_compute_subnetwork.frontend.id,
|
|
google_compute_subnetwork.backend.id,
|
|
google_compute_subnetwork.database.id
|
|
]
|
|
} |