From a008dbcc42cf804e883d13c78242aa7a1fe2233b Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Mon, 31 Jan 2022 21:50:26 -0500 Subject: [PATCH] add DISCORD_PUBLIC_KEY binding --- terraform/api.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/terraform/api.tf b/terraform/api.tf index f36f291..b217940 100644 --- a/terraform/api.tf +++ b/terraform/api.tf @@ -79,6 +79,11 @@ resource "local_file" "bindings" { text = var.allowed_callback_hosts type = "plain_text" }, + { + name = "DISCORD_PUBLIC_KEY" + text = var.discord_public_key + type = "secret_text" + }, { name = "ROOT_USERS" text = join(",", var.root_users)