This commit is contained in:
Yanis DARIUS 2024-12-04 16:20:32 +01:00
parent 419e7e6fd0
commit 0049ccd0b0

View File

@ -0,0 +1,35 @@
variable "project_name" {
description = "ID du projet GCP"
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 par ssh"
type = string
}
variable "cidr_range" {
description = "cidr-network"
type = string
}