feat: Add Terraform configuration for GCP infrastructure and Docker setup

This commit is contained in:
jon brookes 2025-09-08 12:15:29 +01:00
parent 94499fd16e
commit 538fed9a66
10 changed files with 283 additions and 0 deletions

31
gcloud/tf/vars.tf Normal file
View file

@ -0,0 +1,31 @@
// Env vars
// ----------------------------------
variable "project_name" {
type = string
}
variable "env" {
type = string
default = "dev"
description = "Environment"
}
variable "region" {
type = string
default = vars.region
description = "GCP Region"
}
variable "zone" {
type = string
default = vars.zone
description = "GCP Zone"
}
variable "app_name" {
type = string
default = var.app_name
description = "Application name"
}