Skip to content

Commit

Permalink
fix: add brackets to Kong secrets in template
Browse files Browse the repository at this point in the history
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 #79
  • Loading branch information
mattrigg9 committed Nov 18, 2023
1 parent 6036609 commit dee1583
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions containers/kong/kong-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dee1583

Please sign in to comment.