-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
53 lines (45 loc) · 1.16 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
variable "cluster_name" {
type = string
description = "Kubernetes cluster name"
default = "aws-auth-test"
}
variable "dev_role_id" {
type = string
description = "AWS IAM username for the primary user/owner"
default = "anonymous"
}
variable "k8s_version" {
type = string
description = "Kubernetes cluster version"
default = "1.29"
}
variable "vpc_cidr" {
type = string
description = "AWS VPC CIDR"
default = "10.42.0.0/16"
}
variable "create_test_users" {
type = bool
description = "Should we create the test IAM users and keys?"
default = false
}
variable "create_access_entries" {
type = bool
description = "Should we create the access entries?"
default = false
}
variable "setup_irsa" {
type = bool
description = "Should we setup the IRSA components?"
default = false
}
variable "setup_pod_identity" {
type = bool
description = "Should we setup the Pod Identity components?"
default = false
}
variable "setup_cross_account_sts" {
type = bool
description = "Should we setup the cross account STS components?"
default = false
}