-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
58 lines (48 loc) · 1.15 KB
/
variables.tf
File metadata and controls
58 lines (48 loc) · 1.15 KB
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
52
53
54
55
56
57
58
variable "base_network" {
type = string
description = "base network address, e.g. 10.100.0.0"
}
variable "cluster_name" {
type = string
description = "cluster name"
}
variable "eks_oidc_root_ca_thumbprint" {
type = string
description = "Thumbprint of Root CA for EKS OIDC, Valid until 2037"
default = "9e99a48a9960b14926bb7f3b02e22da2b0ab7280"
}
variable "environment" {
type = string
description = "environment to deploy to"
}
variable "external_ip" {
type = string
description = "ip to use for external access. used to control where api endpoint can be reached from"
}
variable "network_mask" {
type = number
default = 16
}
variable "pod_sg_example" {
type = bool
default = false
}
variable "profile" {
type = string
description = "aws profile to use"
default = ""
}
variable "region" {
type = string
description = "aws region to deploy to"
default = "us-east-1"
}
variable "subnet_mask" {
type = number
default = 24
}
variable "eks_version" {
type = string
default = "1.19"
description = "k8s version to use in eks cluster"
}