TP_Terraform/modules/compute/variables.tf

29 lines
461 B
Terraform
Raw Normal View History

2024-12-06 14:44:53 +01:00
variable "instance_type" {
description = "type d'instance"
type = string
default = "e2-micro"
}
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
}