Skip to content

Commit

Permalink
README.md: fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
cageyv committed Nov 24, 2022
1 parent 1325241 commit 42eef41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ data "aws_ssm_parameter" "hook" {
module "cloudtrail_to_slack" {
source = "fivexl/cloudtrail-to-slack/aws"
version = "2.0.1"
version = "3.1.1"
default_slack_hook_url = data.aws_ssm_parameter.hook.value
cloudtrail_logs_s3_bucket_name = aws_s3_bucket.cloudtrail.id
}
Expand Down Expand Up @@ -97,7 +97,7 @@ data "aws_ssm_parameter" "prod_hook" {
module "cloudtrail_to_slack" {
source = "fivexl/cloudtrail-to-slack/aws"
version = "2.0.1"
version = "3.1.1"
default_slack_hook_url = data.aws_ssm_parameter.default_hook.value
configuration = [
Expand Down Expand Up @@ -148,7 +148,7 @@ locals {
module "cloudtrail_to_slack" {
source = "fivexl/cloudtrail-to-slack/aws"
version = "2.0.1"
version = "3.1.1"
default_slack_hook_url = data.aws_ssm_parameter.hook.value
cloudtrail_logs_s3_bucket_name = aws_s3_bucket.cloudtrail.id
events_to_track = local.events_to_track
Expand Down Expand Up @@ -177,7 +177,7 @@ data "aws_ssm_parameter" "hook" {
module "cloudtrail_to_slack" {
source = "fivexl/cloudtrail-to-slack/aws"
version = "2.0.1"
version = "3.1.1"
default_slack_hook_url = data.aws_ssm_parameter.hook.value
cloudtrail_logs_s3_bucket_name = aws_s3_bucket.cloudtrail.id
rules = "'errorCode' in event and event['errorCode'] == 'UnauthorizedOperation','userIdentity.type' in event and event['userIdentity.type'] == 'Root'"
Expand All @@ -202,7 +202,7 @@ data "aws_ssm_parameter" "hook" {
module "cloudtrail_to_slack" {
source = "fivexl/cloudtrail-to-slack/aws"
version = "2.0.1"
version = "3.1.1"
default_slack_hook_url = data.aws_ssm_parameter.hook.value
cloudtrail_logs_s3_bucket_name = aws_s3_bucket.cloudtrail.id
rules = join(",", local.cloudtrail_rules)
Expand Down

0 comments on commit 42eef41

Please sign in to comment.