Files
devops/infra/gcp/outputs.tf
Javier Hinojosa 35773c6efe added infra
2025-11-09 11:17:13 -05:00

24 lines
769 B
HCL

output "gitea_vm_name" {
description = "The name of the Gitea VM."
value = google_compute_instance.gitea_vm.name
}
output "gitea_vm_external_ip" {
description = "The external IP address of the Gitea VM."
value = google_compute_instance.gitea_vm.network_interface[0].access_config[0].nat_ip
}
output "n8n_vm_name" {
description = "The name of the n8n VM."
value = google_compute_instance.n8n_vm.name
}
output "n8n_vm_external_ip" {
description = "The external IP address of the n8n VM."
value = google_compute_instance.n8n_vm.network_interface[0].access_config[0].nat_ip
}
output "dns_name_servers" {
description = "The name servers for the DNS zone."
value = google_dns_managed_zone.singforhope_cloud.name_servers
}