From dee15837adc525971f6e4c08e7812211e402acd7 Mon Sep 17 00:00:00 2001 From: Matt Rigg Date: Sat, 18 Nov 2023 12:16:50 -0800 Subject: [PATCH] fix: add brackets to Kong secrets in template This commit fixes the syntax of the Kong template secrets - an earlier commit dropped the curly brackets which caused the service to be unable to read the secrets. Fixes https://github.com/supabase-community/supabase-on-aws/issues/79 --- containers/kong/kong-template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/kong/kong-template.yml b/containers/kong/kong-template.yml index e1e458d..cc2e06a 100644 --- a/containers/kong/kong-template.yml +++ b/containers/kong/kong-template.yml @@ -17,10 +17,10 @@ consumers: - username: DASHBOARD - username: anon keyauth_credentials: - - key: $SUPABASE_ANON_KEY + - key: ${SUPABASE_ANON_KEY} - username: service_role keyauth_credentials: - - key: $SUPABASE_SERVICE_KEY + - key: ${SUPABASE_SERVICE_KEY} ### ### Access Control List