Files
but3-iac/terraform/modules/compute/variable.tf

20 lines
253 B
Terraform
Raw Normal View History

2025-12-04 09:34:25 +01:00
variable "instance_type" {
type = string
}
variable "zone" {
type = string
}
variable "frontend_subnet_id" {
type = string
}
variable "backend_subnet_id" {
type = string
}
variable "database_subnet_id" {
type = string
}