-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
51 lines (42 loc) · 707 Bytes
/
Copy pathvariables.tf
File metadata and controls
51 lines (42 loc) · 707 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Stack Name
variable "cluster_name" {
type = string
}
# Worker Node instance size
variable "instance_size" {
type = string
}
# Region
variable "region" {}
# Environment
variable "env" {
type = string
default = "Prod"
}
# Type
variable "type" {
type = string
default = "Production"
}
# Instance count
variable "instance_count" {
type = string
}
# AMI ID
variable "ami_id" {
type = string
}
# Cluster Version
variable "cluster_version" {
type = string
}
# VPC CNI Version
variable "vpc-cni-version" {
type = string
description = "VPC CNI Version"
}
# Kube Proxy Version
variable "kube-proxy-version" {
type = string
description = "Kube Proxy Version"
}