diff --git a/tp-cloud/terraform/modules/network/variables.tf b/tp-cloud/terraform/modules/network/variables.tf index e69de29..97e713d 100644 --- a/tp-cloud/terraform/modules/network/variables.tf +++ b/tp-cloud/terraform/modules/network/variables.tf @@ -0,0 +1,34 @@ +variable "project_name" { + description = "ID du projet" + type = string +} + +variable "region" { + description = "region du projet" + type = string +} + +variable "frontend_cidr" { + description = "frontend" + type = string +} + +variable "backend_cidr" { + description = "backend" + type = string +} + +variable "database_cidr" { + description = "database" + type = string +} + +variable "ssh_source_ranges" { + description = "acces internet" + type = string +} + +variable "cidr_range" { + description = "cidr de network" + type = string +} \ No newline at end of file