mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-24 17:52:45 +00:00
62 lines
993 B
HCL
62 lines
993 B
HCL
variable "cluster_name" {
|
|
type = string
|
|
default = "deployed-with-terraform"
|
|
}
|
|
|
|
variable "common_tags" {
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
locals {
|
|
common_tags = [for tag in var.common_tags : replace(tag, "=", "-")]
|
|
}
|
|
|
|
variable "node_size" {
|
|
type = string
|
|
default = "M"
|
|
}
|
|
|
|
variable "min_nodes_per_pool" {
|
|
type = number
|
|
default = 2
|
|
}
|
|
|
|
variable "max_nodes_per_pool" {
|
|
type = number
|
|
default = 5
|
|
}
|
|
|
|
# FIXME
|
|
variable "enable_arm_pool" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "node_types" {
|
|
type = map(string)
|
|
default = {
|
|
"S" = "s-1vcpu-2gb"
|
|
"M" = "s-2vcpu-4gb"
|
|
"L" = "s-4vcpu-8gb"
|
|
}
|
|
}
|
|
|
|
locals {
|
|
node_type = var.node_types[var.node_size]
|
|
}
|
|
|
|
# To view supported regions, run:
|
|
# doctl compute region list
|
|
variable "region" {
|
|
type = string
|
|
default = "nyc1"
|
|
}
|
|
|
|
# To view supported versions, run:
|
|
# doctl kubernetes options versions -o json | jq -r .[].slug
|
|
variable "k8s_version" {
|
|
type = string
|
|
default = "1.21.5-do.0"
|
|
}
|