forked from pierront/but3-iac
feat: network module
This commit is contained in:
34
terraform/modules/network/variables.tf
Normal file
34
terraform/modules/network/variables.tf
Normal file
@@ -0,0 +1,34 @@
|
||||
variable "project_name" {
|
||||
description = "Nom du projet"
|
||||
type = string
|
||||
default = "mon-projet"
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
description = "Région du projet"
|
||||
type = string
|
||||
default = "europe-west9"
|
||||
}
|
||||
|
||||
variable "frontend_cidr" {
|
||||
description = "CIDR pour frontend"
|
||||
type = string
|
||||
default = "10.0.1.0/24"
|
||||
}
|
||||
|
||||
variable "backend_cidr" {
|
||||
description = "CIDR pour backend"
|
||||
type = string
|
||||
default = "10.0.2.0/24"
|
||||
}
|
||||
|
||||
variable "database_cidr" {
|
||||
description = "CIDR pour database"
|
||||
type = string
|
||||
default = "10.0.3.0/24"
|
||||
}
|
||||
|
||||
variable "ssh_source_ranges" {
|
||||
description = "Plages d'adresses IP source autorisées pour SSH"
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user