Hello,
I'm currently using v2.4.0 of Flipt OSS. I'd like to use the secrets file provider for retrieving the OIDC authentication provider credentials (i.e. client_id and client_secret). The below configuration does not work for me.
oidc:
providers:
keycloak:
client_id: ${secret:file:clientid}
client_secret: ${secret:file:clientsecret}
Hard coding the credentials works fine or using an environment variable such as the example below:
oidc:
providers:
keycloak:
client_id: ${env:CLIENT_ID}
client_secret: ${env:CLIENT_SECRET}
The secrets file provider works fine with credentials.[I].access_token.
Hello,
I'm currently using v2.4.0 of Flipt OSS. I'd like to use the secrets file provider for retrieving the OIDC authentication provider credentials (i.e. client_id and client_secret). The below configuration does not work for me.
Hard coding the credentials works fine or using an environment variable such as the example below:
The secrets file provider works fine with credentials.[I].access_token.