mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-28 17:21:11 +00:00
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)
14 lines
189 B
HCL
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"
|
|
}
|