Skip to content

Commit

Permalink
fix: correct the config environment variable name (#905)
Browse files Browse the repository at this point in the history
Signed-off-by: Pat Losoponkul <[email protected]>
  • Loading branch information
patlo-iog authored Feb 22, 2024
1 parent 8e85960 commit d86436c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ agent {
# A path of 'roles' claim in the JWT. Nested path maybe indicated by '.' separator.
# The JWT 'roles' claim is expected to be a list of the following values: [admin, tenant]
rolesClaimPath = "resource_access."${agent.authentication.keycloak.clientId}".roles"
rolesClaimPath = ${?KEYKLOAK_ROLES_CLAIM_PATH}
rolesClaimPath = ${?KEYCLOAK_ROLES_CLAIM_PATH}
}
}
database {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import io.grpc.ManagedChannelBuilder
import io.iohk.atala.agent.server.config.AppConfig
import io.iohk.atala.agent.server.config.SecretStorageBackend
import io.iohk.atala.agent.server.config.ValidatedVaultConfig
import io.iohk.atala.agent.server.config.VaultConfig
import io.iohk.atala.agent.walletapi.crypto.Apollo
import io.iohk.atala.agent.walletapi.memory.{
DIDSecretStorageInMemory,
Expand Down

0 comments on commit d86436c

Please sign in to comment.