Skip to content

Commit

Permalink
Remove the templateId from the notifications environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
thanhz committed Aug 6, 2024
1 parent 114ee63 commit 1a6f331
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions lambda/notifications.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,10 @@ resource "aws_lambda_function" "notifications_lambda_function" {
SLACK_EXPORT_WEBHOOK = aws_kms_ciphertext.environment_vars_notifications["slack_export_webhook"].ciphertext_blob
TO_EMAIL = aws_kms_ciphertext.environment_vars_notifications["to_email"].ciphertext_blob
DA_EVENT_BUS = aws_kms_ciphertext.environment_vars_notifications["da_event_bus"].ciphertext_blob
TRANSFER_COMPLETE_TEMPLATE_ID = aws_kms_ciphertext.environment_vars_notifications["transfer_complete_template_id"].ciphertext_blob
METADATA_REVIEW_REQUESTED_TB_TEMPLATE_ID = aws_kms_ciphertext.environment_vars_notifications["metadata_review_requested_tb_template_id"].ciphertext_blob
METADATA_REVIEW_REQUESTED_DTA_TEMPLATE_ID = aws_kms_ciphertext.environment_vars_notifications["metadata_review_requested_dta_template_id"].ciphertext_blob
METADATA_REVIEW_REJECTED_TEMPLATE_ID = aws_kms_ciphertext.environment_vars_notifications["metadata_review_rejected_template_id"].ciphertext_blob
METADATA_REVIEW_APPROVED_TEMPLATE_ID = aws_kms_ciphertext.environment_vars_notifications["metadata_review_approved_template_id"].ciphertext_blob
GOV_UK_NOTIFY_API_KEY = aws_kms_ciphertext.environment_vars_notifications["gov_uk_notify_api_key"].ciphertext_blob
SEND_GOV_UK_NOTIFICATIONS = aws_kms_ciphertext.environment_vars_notifications["send_gov_uk_notifications"].ciphertext_blob
TDR_INBOX_EMAIL = aws_kms_ciphertext.environment_vars_notifications["tdr_inbox_email"].ciphertext_blob
ENVIRONMENT = aws_kms_ciphertext.environment_vars_notifications["environment"].ciphertext_blob
}
}

Expand All @@ -54,14 +50,10 @@ resource "aws_kms_ciphertext" "environment_vars_notifications" {
slack_export_webhook = data.aws_ssm_parameter.slack_export_webhook[0].value,
to_email = "[email protected]",
da_event_bus = var.da_event_bus_arn
transfer_complete_template_id = data.aws_ssm_parameter.gov_uk_transfer_complete_template_id[0].value
metadata_review_requested_tb_template_id = data.aws_ssm_parameter.gov_uk_metadata_review_requested_tb_template_id[0].value
metadata_review_requested_dta_template_id = data.aws_ssm_parameter.gov_uk_metadata_review_requested_dta_template_id[0].value
metadata_review_rejected_template_id = data.aws_ssm_parameter.gov_uk_metadata_review_rejected_template_id[0].value
metadata_review_approved_template_id = data.aws_ssm_parameter.gov_uk_metadata_review_approved_template_id[0].value
gov_uk_notify_api_key = data.aws_ssm_parameter.gov_uk_notify_api_key[0].value
send_gov_uk_notifications = local.environment == "prod"
tdr_inbox_email = local.environment == "prod" ? "[email protected]" : "[email protected]"
environment = local.environment
}
# This lambda is created by the tdr-terraform-backend project as it only exists in the management account so we can't use any KMS keys
# created by the terraform environments project as they won't exist when we first run the backend project.
Expand Down

0 comments on commit 1a6f331

Please sign in to comment.