added infra

This commit is contained in:
Javier Hinojosa
2025-11-09 11:17:13 -05:00
parent afcb0b7932
commit 35773c6efe
9 changed files with 855 additions and 0 deletions

28
infra/gcp/variables.tf Normal file
View File

@@ -0,0 +1,28 @@
variable "project_id" {
description = "The GCP project ID."
type = string
}
variable "region" {
description = "The GCP region to deploy resources in."
type = string
default = "us-central1"
}
variable "zone" {
description = "The GCP zone to deploy resources in."
type = string
default = "us-central1-a"
}
variable "domain_name" {
description = "The domain name to configure DNS for."
type = string
default = "singforhope.cloud"
}
variable "machine_type" {
description = "The machine type for the VM."
type = string
default = "e2-small"
}