added infra
This commit is contained in:
24
infra/gcp/outputs.tf
Normal file
24
infra/gcp/outputs.tf
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user