2024-12-04 16:20:32 +01:00
|
|
|
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
|
|
|
|
}
|