-
Notifications
You must be signed in to change notification settings - Fork 166
feat: Set kms_key_identifier for EventBridge archives #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
9a2c79d
5b9a769
5b39962
2b6d7d5
0c9f4a7
b91a2a3
1a71d15
a86221c
84f2026
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -284,8 +284,9 @@ resource "aws_cloudwatch_event_archive" "this" { | |
|
||
region = var.region | ||
|
||
name = lookup(each.value, "name", each.key) | ||
event_source_arn = try(each.value["event_source_arn"], aws_cloudwatch_event_bus.this[0].arn) | ||
name = lookup(each.value, "name", each.key) | ||
event_source_arn = try(each.value["event_source_arn"], aws_cloudwatch_event_bus.this[0].arn) | ||
kms_key_identifier = var.kms_key_identifier | ||
|
||
description = lookup(each.value, "description", null) | ||
event_pattern = lookup(each.value, "event_pattern", null) | ||
|
@@ -667,8 +668,9 @@ resource "aws_pipes_pipe" "this" { | |
source = each.value.source | ||
target = each.value.target | ||
|
||
description = lookup(each.value, "description", null) | ||
desired_state = lookup(each.value, "desired_state", null) | ||
kms_key_identifier = var.kms_key_identifier | ||
|
||
description = lookup(each.value, "description", null) | ||
desired_state = lookup(each.value, "desired_state", null) | ||
|
||
dynamic "source_parameters" { | ||
for_each = try([each.value.source_parameters], []) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ terraform { | |
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 6.0" | ||
version = ">= 6.2" | ||
} | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.