Skip to content

Commit

Permalink
Merge pull request #29 from terraform-modules/fix-key-id
Browse files Browse the repository at this point in the history
v2.2.1: fix key-id in encryption
  • Loading branch information
badra001 committed May 28, 2021
2 parents 32bc681 + 877b184 commit c0b21a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ resource "aws_s3_bucket" "this" {
server_side_encryption_configuration {
rule {
apply_server_side_encryption_by_default {
kms_master_key_id = aws_kms_key.key.key_id
kms_master_key_id = aws_kms_key.key.arn
sse_algorithm = "aws:kms"
}
}
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 = "2.2.0"
_module_version = "2.2.1"
}

0 comments on commit c0b21a9

Please sign in to comment.