diff options
Diffstat (limited to 'app/src/main/resources/application-development.yml')
-rw-r--r-- | app/src/main/resources/application-development.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/resources/application-development.yml b/app/src/main/resources/application-development.yml new file mode 100644 index 0000000..50dfb51 --- /dev/null +++ b/app/src/main/resources/application-development.yml @@ -0,0 +1,30 @@ +spring: + security: + oauth2: + client: + provider: + keycloak: + token-uri: http://localhost:8080/auth/realms/ONAP/protocol/openid-connect/token + jwk-set-uri: http://localhost:8080/auth/realms/ONAP/protocol/openid-connect/certs + registration: + keycloak: + provider: keycloak + client-id: portal-bff + client-secret: 5933482a-9f4c-44e0-9814-dca17e0a9137 + authorization-grant-type: client_credentials + resourceserver: + jwt: + jwk-set-uri: http://localhost:8080/auth/realms/ONAP/protocol/openid-connect/certs + +management: + endpoints: + web: + exposure: + include: "*" + +portal-bff: + realm: ONAP + portal-prefs-url: ${PORTAL_PREFS_URL} + portal-history-url: ${PORTAL_HISTORY_URL} + keycloak-url: ${KEYCLOAK_URL} + instance-id: PORTAL |