forked from pierront/but3-iac
modif de DEV
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
output "vpc_id" {
|
||||
value = google_compute_network.vpc.id
|
||||
output "frontend_subnet_id" {
|
||||
value = google_compute_subnetwork.frontend.id
|
||||
}
|
||||
|
||||
output "subnet_ids" {
|
||||
value = {
|
||||
frontend = google_compute_subnetwork.frontend.id
|
||||
backend = google_compute_subnetwork.backend.id
|
||||
database = google_compute_subnetwork.database.id
|
||||
}
|
||||
output "backend_subnet_id" {
|
||||
value = google_compute_subnetwork.backend.id
|
||||
}
|
||||
|
||||
output "database_subnet_id" {
|
||||
value = google_compute_subnetwork.database.id
|
||||
}
|
||||
|
||||
output "vpc_id" {
|
||||
value = google_compute_network.vpc.id
|
||||
}
|
||||
Reference in New Issue
Block a user