From 297a34f15346b1732667c4177b1785d32688073b Mon Sep 17 00:00:00 2001 From: StepanHorbach Date: Mon, 24 Aug 2026 13:47:30 +0300 Subject: [PATCH] FIX: discord server url format --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 5e51f01..603620b 100644 --- a/main.tf +++ b/main.tf @@ -146,7 +146,7 @@ resource "github_repository_webhook" "discord" { active = true configuration { - url = "${var.discord_webhook_url}/github" + url = format("%s/github", var.discord_webhook_url) content_type = "json" insecure_ssl = false }