forked from pierront/but3-iac
37 lines
779 B
HCL
37 lines
779 B
HCL
variable "project_name" {
|
|
description = "nom du projet"
|
|
type = string
|
|
default = "fluted-agency-478713-h5"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "zone server"
|
|
type = string
|
|
default = "europe-west9"
|
|
}
|
|
|
|
variable "frontend_cidr" {
|
|
description = "CIDR du sous-réseau frontend"
|
|
type = string
|
|
default = "10.0.1.0/24"
|
|
}
|
|
|
|
variable "backend_cidr" {
|
|
description = "CIDR du sous-réseau backend"
|
|
type = string
|
|
default = "10.0.2.0/24"
|
|
}
|
|
|
|
variable "database_cidr" {
|
|
description = "CIDR du sous-réseau database"
|
|
type = string
|
|
default = "10.0.3.0/24"
|
|
}
|
|
|
|
variable "ssh_source_ranges" {
|
|
description = "Plage CIDR autorisée à se connecter en SSH"
|
|
type = string
|
|
default = "34.155.72.245/32"
|
|
}
|
|
|