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

31 lines
526 B
Terraform
Raw Normal View History

2025-12-04 11:05:37 +01:00
# variable "project_id" {
# description = "ID du projet GCP"
# type = string
# default = "mon-projet"
# }
2025-12-04 10:15:36 +01:00
2025-12-04 09:32:09 +01:00
variable "instance_type" {
2025-12-04 10:15:36 +01:00
description = "type de l'instance"
type = string
2025-12-04 09:32:09 +01:00
}
variable "zone" {
2025-12-04 10:15:36 +01:00
description = "Nom de la zone"
type = string
2025-12-04 09:32:09 +01:00
}
variable "frontend_subnet_id" {
2025-12-04 10:15:36 +01:00
description = "id du frontend"
type = string
2025-12-04 09:32:09 +01:00
}
variable "backend_subnet_id" {
2025-12-04 10:15:36 +01:00
description = "id du backend"
type = string
2025-12-04 09:32:09 +01:00
}
variable "database_subnet_id" {
2025-12-04 10:15:36 +01:00
description = "id du database"
type = string
2025-12-04 09:32:09 +01:00
}