correction arborescence

This commit is contained in:
2025-12-04 11:47:32 +01:00
parent 6b1d52974a
commit 188ae64c09
28 changed files with 3413 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
output "frontend_public_ip" {
value = google_compute_instance.frontend.network_interface[0].access_config[0].nat_ip
}
output "internal_ips" {
value = {
frontend = google_compute_instance.frontend.network_interface[0].network_ip
backend = google_compute_instance.backend.network_interface[0].network_ip
database = google_compute_instance.database.network_interface[0].network_ip
}
}
output "instance_names" {
value = [
google_compute_instance.frontend.name,
google_compute_instance.backend.name,
google_compute_instance.database.name
]
}