-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (47 loc) · 1.38 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
variable "group_name" {
description = "Group name"
type = string
default = ""
}
variable "description" {
description = "Permissions set group description"
type = string
default = ""
}
variable "session_duration" {
description = "The length of time that the application user sessions are valid in the ISO-8601 standard. Default: PT1H"
type = string
default = "PT2H"
}
variable "policy_attachment" {
description = "ARN of the policy attachment"
type = list(string)
default = []
}
variable "inline_policy" {
description = "Inline policies JSON to attach to SSO Permissions Set"
type = string
default = ""
}
#=== Identity Groups ===#
variable "display_name" {
description = "(Optional) A string containing the name of the group. This value is commonly displayed when the group is referenced"
type = string
default = ""
}
variable "description_identity" {
description = "(Optional) A string containing the description of the group."
type = string
default = ""
}
#=== Account assignment ===#
variable "target_id" {
description = "(Required, Forces new resource) An AWS account identifier, typically a 10-12 digit string."
type = list(string)
}
// Tags
variable "tags" {
description = "A map of tags to add to all resources."
type = map(string)
default = {}
}