forked from terraform-aws-modules/terraform-aws-notify-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
79 lines (66 loc) · 1.74 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
78
79
variable "create" {
description = "Whether to create all resources"
type = bool
default = true
}
variable "create_sns_topic" {
description = "Whether to create new SNS topic"
type = bool
default = true
}
variable "lambda_function_name" {
description = "The name of the Lambda function to create"
type = string
default = "notify_slack"
}
variable "sns_topic_name" {
description = "The name of the SNS topic to create"
type = string
}
variable "slack_webhook_url" {
description = "The URL of Slack webhook"
type = string
}
variable "slack_channel" {
description = "The name of the channel in Slack for notifications"
type = string
}
variable "slack_username" {
description = "The username that will appear on Slack messages"
type = string
}
variable "slack_emoji" {
description = "A custom emoji that will appear on Slack messages"
type = string
default = ":aws:"
}
variable "kms_key_arn" {
description = "ARN of the KMS key used for decrypting slack webhook url"
type = string
default = ""
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "iam_role_tags" {
description = "Additional tags for the IAM role"
type = map(string)
default = {}
}
variable "lambda_function_tags" {
description = "Additional tags for the Lambda function"
type = map(string)
default = {}
}
variable "sns_topic_tags" {
description = "Additional tags for the SNS topic"
type = map(string)
default = {}
}
variable "python_version" {
description = "The Runtime Python version"
type = string
default = "python3.9"
}