Interface VaultConfigurer
-
public interface VaultConfigurerDefines callback methods to customize the configuration for Spring Cloud Vault applications.Configuration classes may implement this interface to be called back and given a chance to customize the default configuration. Consider implementing this interface and overriding the relevant methods for your needs.
Registered bean instances of
VaultConfigurerdisable default secret backend registration for the kv and integrative (other discoveredSecretBackendMetadata) backends. SeeSecretBackendConfigurer.registerDefaultDiscoveredSecretBackends(boolean)for more details.- Since:
- 1.1
- Author:
- Mark Paluch
- See Also:
SecretBackendConfigurer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddSecretBackends(SecretBackendConfigurer configurer)Configure the secret backends that are instantiated asproperty sources.
-
-
-
Method Detail
-
addSecretBackends
void addSecretBackends(SecretBackendConfigurer configurer)
Configure the secret backends that are instantiated asproperty sources.- Parameters:
configurer- theSecretBackendConfigurerto configure secret backends, must not be null.
-
-