forked from pierront/but3-iac
36 lines
743 B
HCL
36 lines
743 B
HCL
variable "project_id" {
|
|
type = string
|
|
description = "ID du projet GCP."
|
|
default = "ok"
|
|
}
|
|
|
|
variable "instance_type" {
|
|
type = string
|
|
description = "Type de machine pour les instances."
|
|
default = "e2-small"
|
|
}
|
|
|
|
variable "zone" {
|
|
type = string
|
|
description = "Zone GCP où déployer les instances."
|
|
default = "europe-west9-b"
|
|
}
|
|
|
|
variable "frontend_subnet_id" {
|
|
type = string
|
|
description = "ID du sous réseau frontend."
|
|
default = ""
|
|
}
|
|
|
|
variable "backend_subnet_id" {
|
|
type = string
|
|
description = "ID du sous-réseau backend."
|
|
default = ""
|
|
}
|
|
|
|
variable "database_subnet_id" {
|
|
type = string
|
|
description = "ID du sous-réseau database."
|
|
default = ""
|
|
}
|