Virtualisation2/terraform/modules/network/outputs.tf
2024-12-06 16:31:12 +01:00

11 lines
251 B
HCL

output "vpc"{
value = google_compute_network.vpc.id
}
output "subnet" {
value = {
frontend = google_compute_subnetwork.subnet1.id,
backend = google_compute_subnetwork.subnet2.id,
database = google_compute_subnetwork.subnet3.id
}
}