diff options
Diffstat (limited to 'app/src/test/resources/application.yml')
-rw-r--r-- | app/src/test/resources/application.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/src/test/resources/application.yml b/app/src/test/resources/application.yml new file mode 100644 index 0000000..f9a82d8 --- /dev/null +++ b/app/src/test/resources/application.yml @@ -0,0 +1,34 @@ +logging: + level: + org.springframework.web: TRACE + +spring: + profiles: + include: + - access-control + security: + oauth2: + client: + provider: + keycloak: + token-uri: http://localhost:${wiremock.server.port}/auth/realms/ONAP/protocol/openid-connect/token + jwk-set-uri: http://localhost:${wiremock.server.port}/auth/realms/ONAP/protocol/openid-connect/certs + registration: + keycloak: + provider: keycloak + client-id: test + client-secret: test + authorization-grant-type: client_credentials + resourceserver: + jwt: + jwk-set-uri: http://localhost:${wiremock.server.port}/auth/realms/ONAP/protocol/openid-connect/certs + jackson: + serialization: + FAIL_ON_EMPTY_BEANS: false + +portal-bff: + realm: ONAP + portal-prefs-url: http://localhost:${wiremock.server.port} + portal-history-url: http://localhost:${wiremock.server.port} + keycloak-url: http://localhost:${wiremock.server.port} + instance-id: PORTAL |