forked from aws-ia/terraform-aws-eks-ack-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
166 lines (136 loc) · 4.27 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
variable "cluster_id" {
description = "EKS Cluster Id"
type = string
}
variable "ecrpublic_username" {
description = "User name decoded from the authorization token for accessing public ECR"
type = string
}
variable "ecrpublic_token" {
description = "Password decoded from the authorization token for accessing public ECR"
type = string
}
variable "data_plane_wait_arn" {
description = "Addon deployment will not proceed until this value is known. Set to node group/Fargate profile ARN to wait for data plane to be ready before provisioning addons"
type = string
default = ""
}
variable "irsa_iam_role_path" {
description = "IAM role path for IRSA roles"
type = string
default = "/"
}
variable "irsa_iam_permissions_boundary" {
description = "IAM permissions boundary for IRSA roles"
type = string
default = ""
}
variable "tags" {
description = "Additional tags (e.g. `map('BusinessUnit`,`XYZ`)"
type = map(string)
default = {}
}
################################################################################
# API Gateway
################################################################################
variable "enable_api_gatewayv2" {
description = "Enable ACK API gateway v2 add-on"
type = bool
default = false
}
variable "api_gatewayv2_helm_config" {
description = "ACK API gateway v2 Helm Chart config"
type = any
default = {}
}
################################################################################
# DynamoDB
################################################################################
variable "enable_dynamodb" {
description = "Enable ACK dynamodb add-on"
type = bool
default = false
}
variable "dynamodb_helm_config" {
description = "ACK dynamodb Helm Chart config"
type = any
default = {}
}
################################################################################
# S3
################################################################################
variable "enable_s3" {
description = "Enable ACK s3 add-on"
type = bool
default = false
}
variable "s3_helm_config" {
description = "ACK s3 Helm Chart config"
type = any
default = {}
}
################################################################################
# RDS
################################################################################
variable "enable_rds" {
description = "Enable ACK rds add-on"
type = bool
default = false
}
variable "rds_helm_config" {
description = "ACK rds Helm Chart config"
type = any
default = {}
}
################################################################################
# EMR Containers
################################################################################
variable "enable_emrcontainers" {
description = "Enable ACK EMR container add-on"
type = bool
default = false
}
variable "emrcontainers_helm_config" {
description = "ACK EMR container Helm Chart config"
type = any
default = {}
}
################################################################################
# AMP
################################################################################
variable "enable_amp" {
description = "Enable ACK amp add-on"
type = bool
default = false
}
variable "amp_helm_config" {
description = "ACK amp Helm Chart config"
type = any
default = {}
}
################################################################################
# Step Functions
################################################################################
variable "enable_sfn" {
description = "Enable ACK step functions add-on"
type = bool
default = false
}
variable "sfn_helm_config" {
description = "ACK step functions Helm Chart config"
type = any
default = {}
}
################################################################################
# Event Bridge
################################################################################
variable "enable_eb" {
description = "Enable ACK Event Bridge add-on"
type = bool
default = false
}
variable "eb_helm_config" {
description = "ACK Event Bridge Helm Chart config"
type = any
default = {}
}