From 9891620f48624193447cfa48766a57e63470919c Mon Sep 17 00:00:00 2001 From: Musthaq Ahamed Date: Tue, 28 Oct 2025 12:36:12 +0530 Subject: [PATCH] SSM parameter data sources --- src/notifications.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/notifications.tf b/src/notifications.tf index e0485f9..9321239 100644 --- a/src/notifications.tf +++ b/src/notifications.tf @@ -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" { @@ -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" {