-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (39 loc) · 1.04 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
variable "name" {
type = string
description = "Name of the role."
}
variable "actions" {
type = list(string)
default = []
description = "List of actions to allow."
}
variable "managed_policy_arns" {
type = list(string)
default = []
description = "List of managed policy ARNs to attach to the role."
}
variable "org_name" {
type = string
description = "GitHub organization name."
default = ""
}
variable "repo_path" {
type = string
description = "GitHub repo path."
default = ""
}
variable "ref" {
type = string
default = "main"
description = "GitHub ref name."
}
variable "condition_test" {
type = string
default = "StringEquals"
description = "Condition test for the assume role policy. Can be StringEquals or StringLike. Add StringLike if you want to use wildcards."
}
variable "assume_role_policy_condition_values" {
type = list(string)
description = "List of values that should be added as trusted to assume role"
default = []
}