Skip to content

Commit

Permalink
Merge pull request #6681 from ministryofjustice/bug-fix-data-external…
Browse files Browse the repository at this point in the history
…-mismatch

Small PR to fix a bug in development caused by removing external data source between plans
  • Loading branch information
luke-a-williams authored Jun 20, 2024
2 parents 999cca9 + 4b12898 commit 1939617
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ resource "aws_sqs_queue" "lambda_dlq" {
kms_master_key_id = aws_kms_key.lambda_env_key.id
}

data "external" "latest_image_update_log_table" {
program = [
"bash", "-c",
"echo {}"]
}

resource "aws_kms_key" "lambda_env_key" {
description = "KMS key for encrypting Lambda environment variables for ${var.function_name}"
enable_key_rotation = true
Expand Down

0 comments on commit 1939617

Please sign in to comment.