49 lines
904 B
HCL
49 lines
904 B
HCL
variable "project_name" {
|
|
description = "ID du projet GCP"
|
|
type = string
|
|
default = "iut fbleau tp"
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "ID du projet GCP"
|
|
type = string
|
|
default = "iut fbleau tp"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "region du projet"
|
|
type = string
|
|
default = "europe-west9"
|
|
}
|
|
|
|
|
|
variable "frontend_cidr" {
|
|
description = "frontend"
|
|
type = string
|
|
default = "10.0.1.0/24"
|
|
}
|
|
|
|
variable "backend_cidr" {
|
|
description = "backend"
|
|
type = string
|
|
default = "10.0.2.0/24"
|
|
}
|
|
|
|
variable "database_cidr" {
|
|
description = "database"
|
|
type = string
|
|
default = "10.0.3.0/24"
|
|
}
|
|
|
|
variable "ssh_source_ranges" {
|
|
description = "acces par ssh"
|
|
type = string
|
|
default = "0.0.0.0/0"
|
|
}
|
|
|
|
variable "cidr_range" {
|
|
description = "cidr-network"
|
|
type = string
|
|
default = "10.0.0.0/16"
|
|
}
|