-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
50 lines (42 loc) · 1.29 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
variable "execution_role_arns" {
description = "ARNs of execution roles allowed to manage this application"
type = list(string)
default = []
}
variable "execution_role_names" {
description = "Names of execution roles allowed to manage this application"
type = list(string)
default = ["terraform-execution"]
}
variable "name" {
description = "Name of this application"
type = string
}
variable "cluster_names" {
description = "Names of EKS clusters for application"
type = list(string)
}
variable "read_permission_sets" {
description = "AWS IAM permission sets allowed to read application data"
type = list(string)
default = []
}
variable "readwrite_permission_sets" {
description = "AWS IAM permission sets allowed to read and write application data"
type = list(string)
default = []
}
variable "secret_permission_sets" {
description = "AWS IAM permission sets allow to read and manage secrets"
type = list(string)
default = []
}
variable "service_account_name" {
description = "Name of the Kubernetes service account for the application"
type = string
default = null
}
variable "stage" {
description = "Software development lifecycle stage for this tenant"
type = string
}