terraform/modules/compute/variables.tf

31 lines
583 B
Terraform
Raw Normal View History

2024-12-06 17:24:57 +01:00
variable "instance_type" {
description = "GCP Instance type"
type = string
default = "e2-small"
}
variable "zone" {
description = "GCP Zone"
type = string
default = "europe-west1-b"
}
variable "frontend_subnet_id" {
description = "Frontend subnet ID"
type = string
default = "frontend"
}
variable "backend_subnet_id" {
description = "Backend subnet ID"
type = string
default = "backend"
}
variable "database_subnet_id" {
description = "Database subnet ID"
type = string
default = "database"
}