-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
36 lines (32 loc) · 880 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
36
variable "eks" {
description = "The outputs from the `terraform-aws-modules/terraform-aws-eks` module."
type = any
}
variable "wait_for_cluster_timeout" {
description = "A timeout (in seconds) to wait for cluster to be available."
type = number
default = 300
}
variable "map_accounts" {
description = "Additional AWS account numbers to add to the aws-auth configmap."
type = list(string)
default = []
}
variable "map_roles" {
description = "Additional IAM roles to add to the aws-auth configmap."
type = list(object({
rolearn = string
username = string
groups = list(string)
}))
default = []
}
variable "map_users" {
description = "Additional IAM users to add to the aws-auth configmap."
type = list(object({
userarn = string
username = string
groups = list(string)
}))
default = []
}