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

25 lines
441 B
Terraform
Raw Normal View History

2025-12-04 10:47:42 +00:00
variable "instance_type" {
2025-12-04 11:52:18 +01:00
description = "type d'une machine"
2025-12-04 10:47:42 +00:00
type = string
}
variable "zone" {
description = "je ne sais pas"
type = string
}
variable "frontend_subnet_id" {
description = "id du sous-réseau frontend"
type = string
}
variable "backend_subnet_id" {
description = "id du sous-réseau backend"
type = string
}
variable "database_subnet_id"{
description = "id du sous-réseau database"
type = string
}