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 d0b24cb commit 065ab5dCopy full SHA for 065ab5d
src/provider-github.tf
@@ -51,13 +51,17 @@ data "aws_ssm_parameter" "github_api_key" {
51
count = !var.github_app_enabled ? 1 : 0
52
name = var.ssm_github_api_key
53
with_decryption = true
54
+
55
+ provider = aws.config_secrets
56
}
57
58
# SSM Parameter for GitHub App Authentication
59
data "aws_ssm_parameter" "github_app_private_key" {
60
count = local.create_github_webhook && var.github_app_enabled ? 1 : 0
61
name = var.ssm_github_app_private_key
62
63
64
65
66
67
# We will only need the github provider if we are creating the GitHub webhook with github_repository_webhook.
0 commit comments