diff --git a/tp-cloud/terraform/modules/network/variables.tf b/tp-cloud/terraform/modules/network/variables.tf index a272e2c..7d5fe2c 100644 --- a/tp-cloud/terraform/modules/network/variables.tf +++ b/tp-cloud/terraform/modules/network/variables.tf @@ -1,35 +1,35 @@ + variable "project_name" { - description = "ID du projet GCP" + description = "Nom du projet" type = string } variable "region" { - description = "region du projet" + description = "Région du projet" type = string } - variable "frontend_cidr" { - description = "frontend" + description = "cidr du frontend" type = string } variable "backend_cidr" { - description = "backend" + description = "cidr du backend" type = string } variable "database_cidr" { - description = "database" + description = "cidr du database" type = string } variable "ssh_source_ranges" { - description = "acces par ssh" + description = "Accès à internet" type = string } variable "cidr_range" { - description = "cidr-network" + description = "cidr de network" type = string -} +} \ No newline at end of file