virtualisation/modules/compute/variables.tf

28 lines
437 B
Terraform
Raw Normal View History

2024-12-04 17:02:32 +01:00
variable "instance_type" {
description = "type d'instance"
type = string
}
variable "zone" {
description = "zone"
type = string
default = "europe-west4-a"
}
2024-12-06 14:20:50 +01:00
variable "frontend_cidr" {
2024-12-04 17:02:32 +01:00
description = "front sub id"
type = string
}
2024-12-06 14:20:50 +01:00
variable "backend_cidr" {
2024-12-04 17:02:32 +01:00
description = "back sub id"
type = string
}
2024-12-06 14:20:50 +01:00
variable "database_cidr" {
2024-12-04 17:02:32 +01:00
description = "data sub id"
type = string
}