Skip to content

Commit 9a2c79d

Browse files
committed
feat!: Set kms_key_identifier for EventBridge archives
1 parent d80f7e6 commit 9a2c79d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ resource "aws_cloudwatch_event_archive" "this" {
286286

287287
name = lookup(each.value, "name", each.key)
288288
event_source_arn = try(each.value["event_source_arn"], aws_cloudwatch_event_bus.this[0].arn)
289+
kms_key_identifier = var.kms_key_identifier
289290

290291
description = lookup(each.value, "description", null)
291292
event_pattern = lookup(each.value, "event_pattern", null)

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.0"
7+
version = ">= 6.2"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)