Jhipster okta integration issue

Hi @mraible, I’m developing monolith app. Here is my .yo-rc.json file. Steps that I took so far are installed jhipster and modified application.yml like below, configured okta tenant and started the app.
oauth2:
client:
provider:
oidc:
issuer-uri: https://dev-534394.oktapreview.com/oauth2/default
registration:
oidc:
client-id: <>
client-secret: <>
scope: openid profile email
access-token-uri: https://dev-534394.oktapreview.com/oauth2/default/v1/token
user-authorization-uri: https://dev-534394.oktapreview.com/oauth2/default/v1/authorize

Here is the .yo-rc.json content

{
“generator-jhipster”: {
“promptValues”: {
“packageName”: “com.octo.frontendauth”
},
“jhipsterVersion”: “6.0.1”,
“applicationType”: “monolith”,
“baseName”: “frontendauthserver”,
“packageName”: “com.octo.frontendauth”,
“packageFolder”: “com/octo/frontendauth”,
“serverPort”: “8080”,
“authenticationType”: “oauth2”,
“cacheProvider”: “ehcache”,
“enableHibernateCache”: false,
“websocket”: false,
“databaseType”: “sql”,
“devDatabaseType”: “h2Memory”,
“prodDatabaseType”: “postgresql”,
“searchEngine”: false,
“messageBroker”: false,
“serviceDiscoveryType”: false,
“buildTool”: “maven”,
“enableSwaggerCodegen”: false,
“clientFramework”: “angularX”,
“clientTheme”: “solar”,
“clientThemeVariant”: “primary”,
“useSass”: true,
“clientPackageManager”: “npm”,
“testFrameworks”: [],
“jhiPrefix”: “jhi”,
“entitySuffix”: “”,
“dtoSuffix”: “DTO”,
“otherModules”: [],
“enableTranslation”: false
}
}