36 lines
671 B
HCL
36 lines
671 B
HCL
variable "project_name" {
|
|
description = "Project Name"
|
|
type = string
|
|
default = "projet-iut-442314"
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "Project ID"
|
|
type = string
|
|
default = "projet-iut-442314"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Project Region"
|
|
type = string
|
|
default = "europe-west1"
|
|
}
|
|
|
|
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"
|
|
}
|