Files
but3-iac/tp-cloud/terraform/modules/compute/variables.tf

25 lines
369 B
Terraform
Raw Normal View History

2025-12-04 09:54:18 +00:00
variable "instance_type" {
type = string
default = "e2-micro"
}
variable "zone" {
type = string
default = "europe-west1-b"
}
variable "frontend_subnet_id" {
type = string
default = "frontend"
}
variable "backend_subnet_id" {
type = string
default = "backend"
}
variable "database_subnet_id" {
type = string
default = "database"
}