-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
41 lines (35 loc) · 921 Bytes
/
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
variable "name_prefix" {
type = string
description = "Name prefix for IAM role name"
default = ""
}
variable "role_path" {
type = string
description = "An optional IAM role path"
default = ""
}
variable "role_description" {
type = string
description = "An optional IAM role description"
default = ""
}
variable "iam_policy_document" {
type = string
description = "Custom IAM policy document"
default = ""
}
variable "existing_iam_policy_arns" {
type = list(string)
description = "List of ARNs of existing IAM policies"
default = []
}
variable "arns_assume_role" {
type = list(string)
description = "List of ARNs of IAM entities that can assume the role"
default = []
}
variable "services_assume_role" {
type = list(string)
description = "List of services that can assume the role"
default = []
}