Skip to content

Commit

Permalink
v1.4.1: make multi-region default for org cloudtrail
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 26, 2021
1 parent d2a3344 commit da278d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,7 @@
- create module to setup a KMS key per region for cloudtrail
- cloudtrail
- create module to setup needed resources for cloudtrail, cloudwatch logs, sns, sqs, and splunk

* v1.14.1 -- 20211126
- cloudltrail
- make multi-region default for org cloudtrail
2 changes: 1 addition & 1 deletion cloudtrail/cloudtrail.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "aws_cloudtrail" "this" {
s3_bucket_name = aws_s3_bucket.this.id
s3_key_prefix = var.cloudtrail_bucket_prefix
include_global_service_events = true
is_multi_region_trail = false
is_multi_region_trail = var.enable_organization ? true : false
enable_log_file_validation = true
enable_logging = true
kms_key_id = var.kms_key_arn
Expand Down
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.14.0"
_module_version = "1.14.1"
}

0 comments on commit da278d4

Please sign in to comment.