30 lines
621 B
HCL
30 lines
621 B
HCL
variable "project_name" {
|
|
description = "Google Cloud Project Name"
|
|
type = string
|
|
default = "projet-iut-44231"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Google Cloud Region"
|
|
type = string
|
|
default = "europe-west1"
|
|
}
|
|
|
|
variable "frontend_cidr" {
|
|
description = "Frontend subnetwork CIDR"
|
|
type = string
|
|
default = "10.0.1.0/24"
|
|
}
|
|
|
|
variable "backend_cidr" {
|
|
description = "Backend subnetwork CIDR"
|
|
type = string
|
|
default = "10.0.2.0/24"
|
|
}
|
|
|
|
variable "database_cidr" {
|
|
description = "Database subnetwork CIDR"
|
|
type = string
|
|
default = "10.0.3.0/24"
|
|
}
|