-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
55 lines (46 loc) · 1.36 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 "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
default = ""
}
variable "log_level" {
default = "Info"
description = "Log level of the lambda output, one of: Debug, Info, Warning, Error, or Critical"
type = string
}
variable "slack_listener_api_endpoint_arn" {
default = ""
description = "ARN of the slack listener API endpoint"
type = string
}
variable "slack_signing_secret" {
default = ""
description = "The slack application's signing secret"
type = string
}
variable "step_function_arn" {
description = "State machine ARN that the api gateway is able to perform actions against"
type = string
}
variable "tags" {
default = {}
description = "Map of tags to assign to this module's resources"
type = map(string)
}
variable "target_api_gw_id" {
description = "ID of the api to add the lambda proxy endpoint to"
type = string
}
variable "target_api_gw_root_resource_id" {
description = "Root resource ID of the api gateway resource to add the lambda proxy endpoint to"
type = string
}
variable "artifacts_bucket_name" {
description = "Name of the artifacts bucket"
type = string
}