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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,11 @@ To run the tests:
109
109
| kms\_key\_arn | ARN of the KMS key used for decrypting slack webhook url |`string`|`""`| no |
110
110
| lambda\_description | The description of the Lambda function |`string`|`null`| no |
111
111
| lambda\_function\_name | The name of the Lambda function to create |`string`|`"notify_slack"`| no |
112
+
| lambda\_function\_s3\_bucket | S3 bucket to store artifacts |`string`|`null`| no |
113
+
| lambda\_function\_store\_on\_s3 | Whether to store produced artifacts on S3 or locally. |`bool`|`false`| no |
112
114
| lambda\_function\_tags | Additional tags for the Lambda function |`map(string)`|`{}`| no |
115
+
| lambda\_function\_vpc\_security\_group\_ids | List of security group ids when Lambda Function should run in the VPC. |`list(string)`|`null`| no |
116
+
| lambda\_function\_vpc\_subnet\_ids | List of subnet ids when Lambda Function should run in the VPC. Usually private or intra subnets. |`list(string)`|`null`| no |
113
117
| lambda\_role | IAM role attached to the Lambda Function. If this is set then a role will not be created for you. |`string`|`""`| no |
114
118
| log\_events | Boolean flag to enabled/disable logging of incoming events |`bool`|`false`| no |
115
119
| 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: examples/cloudwatch-alerts-to-slack/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# CloudWatch alerts to Slack
2
2
3
-
Configuration in this directory creates an SNS topic that sends messages to a Slack channel with Slack webhook URL encrypted using KMS and a CloudWatch Alarm that monitors the duration of lambda execution.
3
+
Configuration in this directory creates a VPC, an SNS topic that sends messages to a Slack channel with Slack webhook URL encrypted using KMS and a CloudWatch Alarm that monitors the duration of lambda execution.
4
4
5
5
## KMS keys
6
6
@@ -62,12 +62,14 @@ Note that this example may create resources which can cost money. Run `terraform
0 commit comments