Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/notifications.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ data "aws_ssm_parameters_by_path" "argocd_notifications" {
for_each = local.notifications_notifiers_ssm_path
path = each.value
with_decryption = true

provider = aws.config_secrets
}

data "aws_ssm_parameter" "slack_notifications" {
Expand All @@ -16,6 +18,8 @@ data "aws_ssm_parameter" "github_notifications_app_private_key" {
count = local.github_notifications_enabled && var.github_notifications_app_enabled ? 1 : 0
name = var.ssm_github_notifications_app_private_key
with_decryption = true

provider = aws.config_secrets
}

module "notifications_templates" {
Expand Down
Loading