-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
68 lines (57 loc) · 1.79 KB
/
variables.tf
File metadata and controls
68 lines (57 loc) · 1.79 KB
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
variable "repository" {
description = "GitHub repository in format owner/repo"
type = string
}
variable "secondary_repositories" {
description = "List of additional GitHub repositories in format owner/repo that should have access"
type = list(string)
default = []
}
variable "s3_bucket_arn" {
description = "ARN of the S3 bucket for Terraform state"
type = string
}
variable "backend_key" {
description = "Key for the Terraform backend"
type = string
}
variable "read_write_policy_arns" {
description = "List of IAM policy ARNs to attach to the read write role"
type = list(string)
default = []
}
variable "read_only_policy_arns" {
description = "List of IAM policy ARNs to attach to the read only role"
type = list(string)
default = []
}
variable "read_write_role_arns" {
description = "List of role ARNs that can be assumed by the read write role"
type = list(string)
default = []
}
variable "read_only_role_arns" {
description = "List of role ARNs that can be assumed by the read only role"
type = list(string)
default = []
}
variable "read_write_policy_documents" {
description = "List of IAM policy documents to attach to the read write role"
type = list(string)
default = []
}
variable "read_only_policy_documents" {
description = "List of IAM policy documents to attach to the read only role"
type = list(string)
default = []
}
variable "allow_read_only_assume_role_arns" {
description = "List of role ARNs which the read only role can assume"
type = list(string)
default = []
}
variable "allow_read_write_assume_role_arns" {
description = "List of role ARNs which the read write role can assume"
type = list(string)
default = []
}