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

24 lines
401 B
Terraform
Raw Normal View History

2025-12-04 07:54:45 +00:00
variable "instance_type" {
2025-12-04 10:52:30 +01:00
description = "type de l'instance"
type = string
2025-12-04 07:54:45 +00:00
}
variable "zone" {
2025-12-04 10:52:30 +01:00
description = "Nom de la zone"
type = string
2025-12-04 07:54:45 +00:00
}
variable "frontend_subnet_id" {
2025-12-04 10:52:30 +01:00
description = "id du frontend"
type = string
2025-12-04 07:54:45 +00:00
}
variable "backend_subnet_id" {
2025-12-04 10:52:30 +01:00
description = "id du backend"
type = string
2025-12-04 07:54:45 +00:00
}
variable "database_subnet_id" {
2025-12-04 10:52:30 +01:00
description = "id du database"
type = string
}