Skip to content

Commit

Permalink
fixing notify_dev_slack_webhook (#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben851 authored Dec 3, 2024
1 parent 102d085 commit 85bc2d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/github/terraform-secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "github_actions_secret" "account_id" {
resource "github_actions_secret" "notify_dev_slack_webhook" {
count = var.env == "production" ? 1 : 0
repository = data.github_repository.notification_terraform.name
secret_name = "NOTIFY_${upper(var.env)}_SLACK_WEBHOOK"
secret_name = "NOTIFY_DEV_SLACK_WEBHOOK"
plaintext_value = var.notify_dev_slack_webhook
}

Expand Down

0 comments on commit 85bc2d2

Please sign in to comment.