diff options
| author | Paul-Christian Volkmer | 2024-04-24 08:41:47 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2024-04-24 08:41:47 +0200 |
| commit | 0f5a68660d4a37ffc1007b7ac851f4f2f0732160 (patch) | |
| tree | eeaa359d2f4ff0c0bdaa22e15f348b7afe012fa5 /src/main/resources | |
| parent | b809a2da0258b5df45398bb46c552c8fd1364536 (diff) | |
refactor: move method content and call this method
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/application-dev.yml | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml index 3d4827c..d3fd5a7 100644 --- a/src/main/resources/application-dev.yml +++ b/src/main/resources/application-dev.yml @@ -3,17 +3,34 @@ spring: compose: file: ./dev-compose.yml + security: + oauth2: + client: + registration: + custom: + client-name: App-Dev + client-id: app-dev + client-secret: 9MQWatEcgkC1WISSAFUGaFGbyEHh8rAy + scope: + - openid + provider: + custom: + issuer-uri: https://dnpm.dev/auth/realms/intern + user-name-attribute: name + app: - #rest: - # uri: http://localhost:9000/bwhc/etl/api - kafka: - topic: test - response-topic: test_response - servers: localhost:9094 - #security: - # admin-user: admin - # admin-password: "{noop}very-secret" + rest: + uri: http://localhost:9000/bwhc/etl/api + #kafka: + # topic: test + # response-topic: test_response + # servers: localhost:9094 + security: + admin-user: admin + admin-password: "{noop}very-secret" + enable-oidc: "true" server: port: 8000 + |
