Code Monkey home page Code Monkey logo

Comments (1)

kamasainaresh-thalupuru avatar kamasainaresh-thalupuru commented on June 11, 2024

it's working after the implements ApplicationContextAware and creating RestOperations object

public class DynamicVaultConfiguration implements ApplicationContextAware {

private @nullable ApplicationContext applicationContext;

/**
 * Creates a {@link VaultTemplate} with the provided HashiCorp Vault credentials.
 * <p>
 * This method configures a {@link VaultTemplate} for Vault interactions, using
 * AppRole authentication with the specified role and secret IDs. It throws an
 * IllegalArgumentException if the Vault URL is not configured.
 * </p>
 *
 * @param credentials The HashiCorp Vault configuration details.
 * @return A configured {@link VaultTemplate}, or {@code null} if an exception occurs.
 * @throws IllegalArgumentException If the Vault URL is null or empty.
 */
public VaultTemplate createVaultTemplate(HashiCorpVaultConfig credentials) {
    try {
        if (vaultUrl == null || vaultUrl.trim().isEmpty()) {
            throw new IllegalArgumentException("Vault URL cannot be null or empty");
        }
        VaultEndpoint endpoint = VaultEndpoint.from(URI.create(vaultUrl));
        AppRoleAuthenticationOptions options = AppRoleAuthenticationOptions.builder()
                .roleId(AppRoleAuthenticationOptions.RoleId.provided(credentials.getRoleId()))
                .secretId(AppRoleAuthenticationOptions.SecretId.provided(credentials.getSecretId()))
                .build();
    RestOperations restOperation = applicationContext.getBean(RestTemplateFactory.class).create(); //Createing Res
        ClientAuthentication authentication = new AppRoleAuthentication(options, restOperation);
        return new VaultTemplate(endpoint,authentication);
    } catch (Exception ex) {
        log.error("Exception While Creating vaultTemplate", ex);
    }
    return null;
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    this.applicationContext=applicationContext;
}

}

from spring-vault.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.