From 733f57e5b7aeb45fd514f3fb8da2c02509deae20 Mon Sep 17 00:00:00 2001 From: nelet Date: Wed, 4 Dec 2024 16:19:45 +0100 Subject: [PATCH] oui --- .../terraform/modules/network/variables.tf | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) 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