forked from flatcar/flatcar-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
35 lines (30 loc) · 810 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
variable "cluster_name" {
type = string
default = "flatcar-cluster"
description = "Name of the EKS cluster"
}
variable "aws_region" {
type = string
default = "us-east-2"
description = "AWS Region to use for running the cluster"
}
variable "cluster_version" {
type = string
default = "1.18"
description = "Version of Kubernetes that runs in the cluster"
}
variable "instance_type" {
type = string
default = "t3.medium"
description = "Instance type for the worker nodes"
}
variable "worker_group_size" {
type = number
default = 2
description = "Amount of workers in the worker group"
}
variable "flatcar_channel" {
type = string
default = "stable"
description = "Flatcar channel to deploy on instances"
}