Skip to content

Commit 37cee28

Browse files
authored
Update default exclusions and update variable description (#29)
1 parent 11e1bd6 commit 37cee28

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module "clickops_notifications" {
6767
| <a name="input_included_users"></a> [included\_users](#input\_included\_users) | List of emails that be scanned to manual actions. If empty will scan all emails. | `list(string)` | `[]` | no |
6868
| <a name="input_lambda_runtime"></a> [lambda\_runtime](#input\_lambda\_runtime) | The lambda runtime to use | `string` | `"python3.8"` | no |
6969
| <a name="input_log_retention_in_days"></a> [log\_retention\_in\_days](#input\_log\_retention\_in\_days) | Number of days to keep CloudWatch logs | `number` | `14` | no |
70-
| <a name="input_message_format"></a> [message\_format](#input\_message\_format) | Where do you want to send this message? Only slack, for now. | `string` | `"slack"` | no |
70+
| <a name="input_message_format"></a> [message\_format](#input\_message\_format) | Where do you want to send this message? slack or msteams | `string` | `"slack"` | no |
7171
| <a name="input_naming_prefix"></a> [naming\_prefix](#input\_naming\_prefix) | Resources will be prefixed with this | `string` | `"clickops-notifier"` | no |
7272
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to add to resources in addition to the default\_tags for the provider | `map(string)` | `{}` | no |
7373
| <a name="input_webhook"></a> [webhook](#input\_webhook) | The webhook URL for notifications. https://api.slack.com/messaging/webhooks | `string` | n/a | yes |
@@ -89,7 +89,7 @@ module "clickops_notifications" {
8989

9090
| Name | Version |
9191
|------|---------|
92-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.29.0 |
92+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.36.1 |
9393
----
9494
### Requirements
9595

@@ -129,6 +129,7 @@ locals {
129129
"signin.amazonaws.com:ExternalIdPDirectoryLogin",
130130
"signin.amazonaws.com:CredentialVerification",
131131
"signin.amazonaws.com:CredentialChallenge",
132+
"signin.amazonaws.com:CheckMfa",
132133
133134
"logs.amazonaws.com:StartQuery",
134135
"cloudtrail.amazonaws.com:StartQuery",

excluded_scoped_actions.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ locals {
1616
"signin.amazonaws.com:ExternalIdPDirectoryLogin",
1717
"signin.amazonaws.com:CredentialVerification",
1818
"signin.amazonaws.com:CredentialChallenge",
19+
"signin.amazonaws.com:CheckMfa",
1920

2021
"logs.amazonaws.com:StartQuery",
2122
"cloudtrail.amazonaws.com:StartQuery",

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ variable "webhook" {
1414

1515
variable "message_format" {
1616
type = string
17-
description = "Where do you want to send this message? Only slack, for now."
17+
description = "Where do you want to send this message? slack or msteams"
1818
default = "slack"
1919

2020
validation {

0 commit comments

Comments
 (0)