You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Doing serverless with Terraform? Check out [serverless.tf framework](https://ser
8
8
9
9
## Supported Features
10
10
11
-
- AWS Lambda runtime Python 3.11
11
+
- AWS Lambda runtime Python 3.13
12
12
- Create new SNS topic or use existing one
13
13
- Support plaintext and encrypted version of Slack webhook URL
14
14
- Most of Slack message options are customizable
@@ -23,7 +23,7 @@ Doing serverless with Terraform? Check out [serverless.tf framework](https://ser
23
23
```hcl
24
24
module "notify_slack" {
25
25
source = "terraform-aws-modules/notify-slack/aws"
26
-
version = "~> 5.0"
26
+
version = "~> 7.0"
27
27
28
28
sns_topic_name = "slack-topic"
29
29
@@ -122,6 +122,7 @@ See the [functions](https://github.com/terraform-aws-modules/terraform-aws-notif
122
122
| <aname="input_lambda_role"></a> [lambda\_role](#input\_lambda\_role)| IAM role attached to the Lambda Function. If this is set then a role will not be created for you. |`string`|`""`| no |
123
123
| <aname="input_lambda_source_path"></a> [lambda\_source\_path](#input\_lambda\_source\_path)| The source path of the custom Lambda function |`string`|`null`| no |
124
124
| <aname="input_log_events"></a> [log\_events](#input\_log\_events)| Boolean flag to enabled/disable logging of incoming events |`bool`|`false`| no |
125
+
| <aname="input_log_level"></a> [log\_level](#input\_log\_level)| Logging level for the Lambda function |`string`|`"INFO"`| no |
125
126
| <aname="input_putin_khuylo"></a> [putin\_khuylo](#input\_putin\_khuylo)| Do you agree that Putin doesn't respect Ukrainian sovereignty and territorial integrity? More info: https://en.wikipedia.org/wiki/Putin_khuylo!|`bool`|`true`| no |
126
127
| <aname="input_recreate_missing_package"></a> [recreate\_missing\_package](#input\_recreate\_missing\_package)| Whether to recreate missing Lambda package if it is missing locally or not |`bool`|`true`| no |
127
128
| <aname="input_reserved_concurrent_executions"></a> [reserved\_concurrent\_executions](#input\_reserved\_concurrent\_executions)| The amount of reserved concurrent executions for this lambda function. A value of 0 disables lambda from being triggered and -1 removes any concurrency limitations |`number`|`-1`| no |
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -168,6 +168,12 @@ variable "log_events" {
168
168
default=false
169
169
}
170
170
171
+
variable"log_level" {
172
+
description="Logging level for the Lambda function"
173
+
type=string
174
+
default="INFO"
175
+
}
176
+
171
177
variable"reserved_concurrent_executions" {
172
178
description="The amount of reserved concurrent executions for this lambda function. A value of 0 disables lambda from being triggered and -1 removes any concurrency limitations"
0 commit comments