forked from pierront/but3-iac
arborenscence + fichier modifier
This commit is contained in:
36
terraform/modules/network/variables.tf
Normal file
36
terraform/modules/network/variables.tf
Normal file
@@ -0,0 +1,36 @@
|
||||
variable "project_name" {
|
||||
type = string
|
||||
description = "but3-iac"
|
||||
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = string
|
||||
description = "Région dans laquelle déployer les ressources"
|
||||
|
||||
}
|
||||
|
||||
variable "frontend_cidr" {
|
||||
description = "CIDR for frontend subnet"
|
||||
type = string
|
||||
|
||||
}
|
||||
|
||||
variable "backend_cidr" {
|
||||
description = "CIDR for backend subnet"
|
||||
type = string
|
||||
|
||||
}
|
||||
|
||||
variable "database_cidr" {
|
||||
description = "CIDR for database subnet"
|
||||
type = string
|
||||
|
||||
}
|
||||
|
||||
variable "ssh_source_ranges" {
|
||||
type = string
|
||||
description = "Plages d’adresses autorisées à se connecter en SSH"
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user