-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
77 lines (66 loc) · 2.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
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
variable "assignments" {
description = "An optional list of assignments to be attached to the permission set"
type = list(object({
principal_id = string
principal_type = optional(string, "GROUP")
targets = list(string)
}))
default = []
}
variable "customer_managed_inline_policy" {
description = "An optional inline policy to be attached to the permission set"
type = string
default = null
}
variable "customer_managed_boundary_policy_reference" {
description = "Customer managed boundary policy reference to be attached to the permission set"
type = object({
name = string
path = optional(string, "/")
})
default = null
}
variable "customer_managed_policy_references" {
description = "The list of customer managed policy references to be attached to the permission set"
type = list(object({
name = string
path = optional(string, "/")
}))
default = []
}
variable "relay_state" {
description = "The relay state of the permission set, used to redirect users to a specific page after login"
type = string
default = null
}
variable "description" {
description = "The description of this permission set to be created"
type = string
}
variable "instance_arn" {
description = "The arn of the instance to which the permission set is to be attached"
type = string
}
variable "managed_boundary_policy_arns" {
description = "The list of managed boundary policy arns to be attached to the permission set"
type = list(string)
default = []
}
variable "managed_policy_arns" {
description = "The list of managed policy arns to be attached to the permission set"
type = list(string)
default = []
}
variable "name" {
description = "The name of this permission set to be created"
type = string
}
variable "session_duration" {
description = "The duration of the session"
type = string
default = "PT2H"
}
variable "tags" {
description = "The tags to be attached to the permission set"
type = map(string)
}