TP_Terraform/modules/compute/variables.tf
2024-12-06 15:12:04 +01:00

29 lines
453 B
HCL

variable "instance_type" {
description = "type d'instance"
type = string
default = ""
}
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
}