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 065ab5d commit 12b6691Copy full SHA for 12b6691
src/notifications.tf
@@ -2,6 +2,8 @@ data "aws_ssm_parameters_by_path" "argocd_notifications" {
2
for_each = local.notifications_notifiers_ssm_path
3
path = each.value
4
with_decryption = true
5
+
6
+ provider = aws.config_secrets
7
}
8
9
data "aws_ssm_parameter" "slack_notifications" {
@@ -16,6 +18,8 @@ data "aws_ssm_parameter" "github_notifications_app_private_key" {
16
18
count = local.github_notifications_enabled && var.github_notifications_app_enabled ? 1 : 0
17
19
name = var.ssm_github_notifications_app_private_key
20
21
22
23
24
25
module "notifications_templates" {
0 commit comments