Files
devops/infra/gcp/variables.tf
Javier Hinojosa 35773c6efe added infra
2025-11-09 11:17:13 -05:00

29 lines
620 B
HCL

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"
}