argos/annotation-service/annotation-web/src/main/resources/config/security.yml

14 lines
328 B
YAML
Raw Normal View History

2024-02-09 17:50:34 +01:00
web:
security:
enabled: true
authorized-endpoints: [ api ]
2024-03-28 13:57:51 +01:00
allowed-endpoints: [ public ]
2024-02-09 17:50:34 +01:00
idp:
api-key:
2024-03-28 13:57:51 +01:00
enabled: false
2024-02-09 17:50:34 +01:00
resource:
2024-03-28 13:57:51 +01:00
token-type: JWT #| opaque
2024-02-09 17:50:34 +01:00
jwt:
claims: [ role, x-role ]
2024-03-28 13:57:51 +01:00
issuer-uri: ${IDP_ISSUER_URI}
validIssuer: ${IDP_ISSUER_URI}