added infra

This commit is contained in:
Javier Hinojosa
2025-11-09 11:17:13 -05:00
parent afcb0b7932
commit 35773c6efe
9 changed files with 855 additions and 0 deletions

24
infra/gcp/outputs.tf Normal file
View File

@@ -0,0 +1,24 @@
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
}