Fix blueprint !Env tag: use scalar not sequence
!Env expects a bare string (e.g. !Env FOO), not a YAML sequence (!Env [FOO]). The list form caused IndexError during blueprint discovery. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b3f30fd947
commit
25d43aa743
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ data:
|
|||
invalidation_flow: !Find [authentik_flows.flow, [slug, default-provider-invalidation-flow]]
|
||||
client_type: confidential
|
||||
client_id: grafana
|
||||
client_secret: !Env [AUTHENTIK_GRAFANA_CLIENT_SECRET]
|
||||
client_secret: !Env AUTHENTIK_GRAFANA_CLIENT_SECRET
|
||||
redirect_uris:
|
||||
- matching_mode: strict
|
||||
url: https://grafana.ops.eblu.me/login/generic_oauth
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue