diff options
author | egernug <gerard.nugent@est.tech> | 2023-11-27 12:52:07 +0000 |
---|---|---|
committer | egernug <gerard.nugent@est.tech> | 2023-11-27 12:52:07 +0000 |
commit | ff598422ebf5bb21bb66eddc68042ebc0512b77d (patch) | |
tree | c02e86003e1f3a553c0a9e6fd40e02d2e67d6f13 /cps-application/src/main/resources/application.yml | |
parent | 605e2ad3d0e612a020d1a3236765e27154132afb (diff) |
Return permit-uri from root to securty
In Springboot 3.0 an error was observed with security.permit-uri throwing a PatternParseException.
This appears to be fixed in 3.1.2
Issue-ID: CPS-1875
Signed-off-by: egernug <gerard.nugent@est.tech>
Change-Id: I8dd4f66868a5cc4db636d77f123ad5dbbd61f4b4
Diffstat (limited to 'cps-application/src/main/resources/application.yml')
-rw-r--r-- | cps-application/src/main/resources/application.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index e84b1937b6..89969b9c6a 100644 --- a/cps-application/src/main/resources/application.yml +++ b/cps-application/src/main/resources/application.yml @@ -139,10 +139,11 @@ springdoc: - name: cps-ncmp-inventory url: /api-docs/cps-ncmp/openapi-inventory.yaml -permit-uri: /actuator/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/** + security: # comma-separated uri patterns which do not require authorization + permit-uri: /actuator/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/** auth: username: ${CPS_USERNAME} password: ${CPS_PASSWORD} |