2024-12-06 14:44:53 +01:00
|
|
|
variable "instance_type" {
|
|
|
|
description = "type d'instance"
|
|
|
|
type = string
|
2024-12-06 15:12:04 +01:00
|
|
|
default = ""
|
2024-12-06 14:44:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "zone" {
|
|
|
|
description = "zone"
|
|
|
|
type = string
|
|
|
|
default = "europe-west4-a"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "frontend_cidr" {
|
|
|
|
description = "range_front"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "backend_cidr" {
|
|
|
|
description = "range_back"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "database_cidr" {
|
|
|
|
description = "range_database"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
|