Skip to content

Commit

Permalink
ci(fix): Syntax error in cdk stack
Browse files Browse the repository at this point in the history
  • Loading branch information
topher-lo committed Mar 17, 2024
1 parent 4f74289 commit 0925538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:
"SupabaseJwtSecret",
secret_name=f"{SECRET_NAME_PREFIX}/supbase-jwt-secret",
)
psql_url_secret = Secret.Secret.from_secret_name_v2(
psql_url_secret = Secret.from_secret_name_v2(
self, "SupabasePsqlUrl", f"{SECRET_NAME_PREFIX}/supabase-psql-url"
)
openai_api_key = Secret.from_secret_name_v2(
Expand Down

0 comments on commit 0925538

Please sign in to comment.