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

chore: Use # for comments. It's the recommended way to start comment and it's more idiomatic (#1079)

This commit is contained in:
Thierno IB. BARRY
2020-11-02 08:35:12 +01:00
committed by GitHub
parent 127a3a8831
commit 571e4e7f4b
4 changed files with 34 additions and 31 deletions
@@ -3,7 +3,8 @@ variable "region" {
}
variable "instance_type" {
default = "t3.small" // smallest recommended, where ~1.1Gb of 2Gb memory is available for the Kubernetes pods after warming up Docker, Kubelet, and OS
# Smallest recommended, where ~1.1Gb of 2Gb memory is available for the Kubernetes pods after warming up Docker, Kubelet, and OS
default = "t3.small"
type = string
}