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

14 lines
189 B
HCL

variable "node_sizes" {
type = map(any)
default = {
S = "t3.small"
M = "t3.medium"
L = "t3.large"
}
}
variable "location" {
type = string
default = "eu-north-1"
}