-
-
Notifications
You must be signed in to change notification settings - Fork 72
Azure Key Vault
Robin Rodricks edited this page Jul 15, 2026
·
4 revisions
In order to use Key Vault reference FluentStorage.Azure.KeyVault package first.
You can use the AzureKeyVaultStorage factory class to connect to Azure Key Vault.
IStore store = AzureKeyVaultStorage.FromCredentials(vaultUri,tenantId,
applicationId,applicationSecret, activeDirectoryAuthEndpoint);To create with a connection string, first reference the module:
AzureKeyVaultStorage.Use();Then construct using any of these:
IStore store = StorageFactory.FromConnectionString("azure.keyvault://vaultUri=...;msi=True;bucket=...;region=...");
IStore store = StorageFactory.FromConnectionString("azure.keyvault://vaultUri=...;tenantId=...;clientId=...;principalSecret=...");Use our simple polycloud API to perform file and object manipulation operations.