This commit is contained in:
2024-12-06 16:05:50 +01:00
parent 6b00f916e7
commit 2c6a297c9b
16 changed files with 59 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
output "Intern"{
value = {
ip_front = google_compute_instance.vm-front.network_interface[0].network_ip,
ip_back = google_compute_instance.vm-back.network_interface[0].network_ip,
ip_db = google_compute_instance.vm-database.network_interface[0].network_ip
}
}
output "frontend_public_ip" {
value = google_compute_instance.vm-front.network_interface[0].access_config[0].nat_ip
}
output "name"{
value = {
name_frontend = google_compute_instance.vm-front.name
name_backend = google_compute_instance.vm-back.name
name_database = google_compute_instance.vm-database.name
}
}