1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

fix: Fixed launch_templates_with_managed_node_group example (#1599)

This commit is contained in:
Pascal Bourdier
2021-09-24 12:47:28 +02:00
committed by GitHub
parent a06e4c84a9
commit 13cb55528c
4 changed files with 7 additions and 6 deletions
@@ -1,6 +1,6 @@
variable "instance_type" {
description = "Instance type"
variable "instance_types" {
description = "Instance types"
# Smallest recommended, where ~1.1Gb of 2Gb memory is available for the Kubernetes pods after warming up Docker, Kubelet, and OS
type = string
default = "t3.small"
type = list(string)
default = ["t3.small"]
}