Add GCP deployment examples: create Terraform configurations for GCP, including network setup, instance definitions, and routing, along with a README for usage instructions.

This commit is contained in:
2026-08-27 21:23:47 +02:00
parent 245d0dfd96
commit c8f54ca865
12 changed files with 465 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
output "router_public_ip" {
description = "Public IP address of the router VM."
value = google_compute_address.ext.address
}
output "router_internal_ip" {
description = "Private IP address of the router's internal NIC - the next hop to use in routes configured outside this Terraform run (another route, or an on-prem device) that need to reach remote_cidrs through this router."
value = google_compute_instance.router.network_interface[1].network_ip
}