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
+14
View File
@@ -0,0 +1,14 @@
terraform {
required_version = ">= 1.9"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 7.0, < 8.0"
}
http = {
source = "hashicorp/http"
version = ">= 3.4, < 4.0"
}
}
}