Skip to content

Commit 98433d2

Browse files
committed
✨ Use new jwt helpers to generate unique jwts
1 parent 40f2a72 commit 98433d2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

blueprints/supabase/template.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ main_domain = "${domain}"
33
postgres_password = "${password:32}"
44
dashboard_password = "${password:32}"
55
logflare_api_key = "${password:32}"
6+
jwt_secret = "${password:32}"
7+
anon_key_payload = """{
8+
"role": "anon",
9+
"iss": "supabase",
10+
"exp": ${timestamps:2030-01-01T00:00:00Z},
11+
}
12+
"""
13+
service_role_key_payload = """{
14+
"role": "service_role",
15+
"iss": "supabase",
16+
"exp": ${timestamps:2030-01-01T00:00:00Z},
17+
}
18+
"""
619

720
[[config.domains]]
821
serviceName = "kong"

0 commit comments

Comments
 (0)