forked from pierront/but3-iac
36 lines
769 B
HCL
36 lines
769 B
HCL
variable "project_name" {
|
|
description = "Nom du projet"
|
|
type = string
|
|
default = "iutsf-478713"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Région cloud"
|
|
type = string
|
|
default = "europe-west1"
|
|
}
|
|
|
|
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 base de données"
|
|
type = string
|
|
default = "10.0.3.0/24"
|
|
}
|
|
|
|
variable "ssh_source_ranges" {
|
|
description = "Plages IP autorisées à SSH"
|
|
type = list(string)
|
|
default = ["34.78.156.163/32"]
|
|
}
|