Slide 29
Slide 29 text
.NET
Example
Add configuration provider
public VaultConfigurationProvider(VaultOptions config
)
{
_config = config
;
var vaultClientSettings = new VaultClientSettings
(
_config.Address
,
new AppRoleAuthMethodInfo(_config.Role
,
_config.Secret
)
)
;
_client = new VaultClient(vaultClientSettings)
;
}
CODE EDITOR