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

14 lines
328 B
YAML
Raw Normal View History

2023-12-08 10:25:07 +01:00
web:
security:
enabled: true
authorized-endpoints: [ api ]
2024-03-29 13:32:47 +01:00
allowed-endpoints: [ public ]
2023-12-08 10:25:07 +01:00
idp:
api-key:
2024-03-29 13:32:47 +01:00
enabled: false
2023-12-08 10:25:07 +01:00
resource:
2024-03-29 13:32:47 +01:00
token-type: JWT #| opaque
2023-12-08 10:25:07 +01:00
jwt:
claims: [ role, x-role ]
2024-03-29 13:32:47 +01:00
issuer-uri: ${IDP_ISSUER_URI}
validIssuer: ${IDP_ISSUER_URI}