47 lines
891 B
HCL
47 lines
891 B
HCL
variable "project_name" {
|
|
description = "Nom du projet"
|
|
type = string
|
|
default = "newtp-443913"
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "projet id"
|
|
type = string
|
|
default = "newtp-443913"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Region"
|
|
type = string
|
|
default = "europe-west9"
|
|
}
|
|
|
|
variable "frontend_cidr" {
|
|
description = "cidr du frontend"
|
|
type = string
|
|
default = "10.0.1.0/24"
|
|
}
|
|
|
|
variable "backend_cidr" {
|
|
description = "cidr du backend"
|
|
type = string
|
|
default = "10.0.2.0/24"
|
|
}
|
|
|
|
variable "database_cidr" {
|
|
description = "cidr du db"
|
|
type = string
|
|
default = "10.0.3.0/24"
|
|
}
|
|
|
|
variable "ssh_source_ranges" {
|
|
description = "ssh"
|
|
type = string
|
|
default = "0.0.0.0/0"
|
|
}
|
|
|
|
variable "cidr_range" {
|
|
description = "cidr de network"
|
|
type = string
|
|
default = "10.0.0.0/16"
|
|
} |