We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14331f0 commit ba9367eCopy full SHA for ba9367e
terraform/infrastructure/data.tf
@@ -48,5 +48,6 @@ data "aws_s3_bucket" "source-data-bucket" {
48
}
49
50
data "aws_kms_key" "glue" {
51
- count = local.is_dev_env ? 1 : 0
+ count = local.is_dev_env ? 1 : 0
52
+ key_id = "alias/${local.shared_prefix}-glue"
53
terraform/infrastructure/modules/firehose/locals.tf
@@ -42,7 +42,7 @@ locals {
42
43
iam_kms_resources = compact([
44
aws_kms_key.firehose.arn,
45
- local.reporting_kms_arn
+ var.reporting_kms_arn
46
])
47
0 commit comments