DEV5.6TP7/tp-cloud/terraform/modules/network/variables.tf

36 lines
576 B
Terraform
Raw Normal View History

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
}