Files
but3-iac/terraform/modules/compute/variables.tf
James Boutaric f54d9bacfb ajout outputs
2025-12-04 11:05:37 +01:00

31 lines
526 B
HCL

# variable "project_id" {
# description = "ID du projet GCP"
# type = string
# default = "mon-projet"
# }
variable "instance_type" {
description = "type de l'instance"
type = string
}
variable "zone" {
description = "Nom de la zone"
type = string
}
variable "frontend_subnet_id" {
description = "id du frontend"
type = string
}
variable "backend_subnet_id" {
description = "id du backend"
type = string
}
variable "database_subnet_id" {
description = "id du database"
type = string
}