-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
60 lines (50 loc) · 1.6 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
variable "project_name" {
default = "ldap-maintainer"
description = "Name of the project"
type = string
}
variable "slack_api_token" {
description = "API token used by the slack client"
type = string
}
variable "slack_channel_id" {
description = "Channel that the slack notifier will post to"
type = string
}
variable "sfn_activity_arn" {
description = "ARN of the state machine activity to query for a taskToken"
type = string
}
variable "invoke_base_url" {
description = "Base URL of the api gateway endpoint to pass to slack for approve/deny actions"
type = string
}
variable "log_level" {
default = "Info"
description = "(Optional) Log level of the lambda output, one of: Debug, Info, Warning, Error, or Critical"
type = string
}
variable "filter_prefixes" {
default = []
description = "(Optional) List of three letter user name prefixes to filter out of the user search results"
type = list(string)
}
variable "timezone" {
default = "US/Eastern"
description = "(Optional)Timezone that the slack notifications will be timestamped with"
type = string
}
variable "artifacts_bucket_name" {
description = "Name of the artifacts bucket"
type = string
}
variable "tags" {
default = {}
description = "Map of tags to assign to this module's resources"
type = map(string)
}
variable "days_since_pwdlastset" {
description = "Number of days since the pwdLastSet ldap attribute has been updated. This metric is used to disable the target ldap object."
type = number
default = 120
}