Files
Jérôme Petazzoni abca33af29 🏭️ Second pass of Terraform refactoring
Break down provider-specific configuration into two files:
- config.tf (actual configuration, e.g. credentials, that cannot be
  included in submodules)
- variables.tf (per-provider knobs and settings, e.g. mapping logical
  VM size like S/M/L to actual cloud SKUs)
2023-04-09 09:45:05 +02:00

22 lines
375 B
HCL

/*
Available sizes:
"g6-standard-1" # CPU=1 RAM=2
"g6-standard-2" # CPU=2 RAM=4
"g6-standard-4" # CPU=4 RAM=8
"g6-standard-6" # CPU=6 RAM=16
"g6-standard-8" # CPU=8 RAM=32
*/
variable "node_sizes" {
type = map(any)
default = {
S = "g6-standard-1"
M = "g6-standard-2"
L = "g6-standard-4"
}
}
variable "location" {
type = string
default = "eu-west"
}