Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@
<artifactId>spring-cloud-starter-vault-config</artifactId>
<version>2.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-vault-config-databases</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
Expand Down
8 changes: 5 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spring:
google:
provider: google
clientName: ego
client_id: ego-client
clientId: ego-client
clientSecret:
authorizationGrantType: authorization_code
clientAuthenticationMethod: client_secret_post
Expand All @@ -73,7 +73,7 @@ spring:

github:
clientName: ego
client_id: ego-client
clientId: ego-client
clientSecret:
redirectUri: "http://localhost:8081/oauth/code/github"
clientAuthenticationMethod: client_secret_post
Expand Down Expand Up @@ -131,7 +131,9 @@ spring:
jwkSetUri: https://orcid.org/oauth/jwks
cloud:
vault:
enabled: false
kv:
backend: kv
enabled: true
flyway:
enabled: true
locations: "classpath:flyway/sql,classpath:db/migration"
Expand Down