Created
June 2, 2022 07:40
-
-
Save Mishco/6c8f80e376d21131a98ad2426029008d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Configuration | |
public class VaultConfig extends AbstractVaultConfiguration { | |
@Override | |
public ClientAuthentication clientAuthentication() { | |
return new TokenAuthentication("00000000-0000-0000-0000-000000000000"); | |
} | |
@Override | |
public VaultEndpoint vaultEndpoint() { | |
return VaultEndpoint.create("vault", 8201); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment