24 lines
769 B
HCL
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
|
|
} |