1
0
forked from pierront/but3-iac
Files
but3-iac-dick/terraform/modules/compute/variables.tf

25 lines
280 B
Terraform
Raw Normal View History

2025-12-04 09:02:57 +01:00
variable "project_name" {
type = string
}
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
}