-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
94 lines (80 loc) · 2.8 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
variable "athena_buckets_source" {
type = list(string)
description = "The ARNs of the AWS S3 buckets that store the data being queried through Athena. Use [\"*\"] to allow all buckets."
default = []
}
variable "athena_buckets_results" {
type = list(string)
description = "The ARNs of the AWS S3 buckets that store the results of Athena queries. Use [\"*\"] to allow all buckets."
default = []
}
variable "athena_tables_exec" {
type = list(object({
database = string
table = string
}))
description = "A list of the Glue tables that can be read from during execution of Athena queries. Use [\"*\"] to allow all tables."
default = []
}
variable "athena_workgroups_exec" {
type = list(string)
description = "The ARNs of the AWS Athena workgroups that can be executed. Use [\"*\"] to allow all workgroups."
default = []
}
variable "codecommit_repos_pull" {
type = list(string)
description = "The ARNs of the AWS CodeCommit repos that can be pulled. Use [\"*\"] to allow all repos."
default = []
}
variable "codecommit_repos_push" {
type = list(string)
description = "The ARNs of the AWS CodeCommit repos that can be pushed. Use [\"*\"] to allow all repos."
default = []
}
variable "description" {
type = string
description = "The description of the AWS IAM policy. Defaults to \"The policy for [NAME].\""
default = ""
}
variable "ecr_repos_read" {
type = list(string)
description = "The ARNs of the AWS ECR repos that can be read from. Use [\"*\"] to allow all repos."
default = []
}
variable "ecr_repos_write" {
type = list(string)
description = "The ARNs of the AWS ECR repos that can be written to. Use [\"*\"] to allow all repos."
default = []
}
variable "glue_tables_add" {
type = list(object({
database = string
table = string
}))
description = "List of Glue tables that partitions can be added to."
default = []
}
variable "kms_keys_decrypt" {
type = list(string)
description = "The ARNs of the AWS KMS keys that can be used to decrypt data. Use [\"*\"] to allow all keys."
default = []
}
variable "kms_keys_encrypt" {
type = list(string)
description = "The ARNs of the AWS KMS keys that can be used to encrypt data. Use [\"*\"] to allow all keys."
default = []
}
variable "name" {
type = string
description = "The name of the AWS IAM policy."
}
variable "s3_buckets_write" {
type = list(string)
description = "The ARNs of the AWS S3 buckets that can be written to. Use [\"*\"] to allow all buckets."
default = []
}
variable "s3_buckets_read" {
type = list(string)
description = "The ARNs of the AWS S3 buckets that can be read from. Use [\"*\"] to allow all buckets."
default = []
}