AzureKeyVault: Azure Key Vault endpoint class

Description Fields See Also Examples

Description

Class representing the client endpoint for a key vault, exposing methods for working with it. Use the [key_vault] function to instantiate new objects of this class.

Fields

See Also

key_vault, keys, secrets, certificates, storage

Azure Key Vault documentation, Azure Key Vault API reference

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 

key_vault("mykeyvault")
key_vault("https://mykeyvault.vault.azure.net")

# authenticating as a service principal
key_vault("mykeyvault", tenant="myaadtenant", app="app_id", password="password")

# authenticating with an existing token
token <- AzureAuth::get_azure_token("https://vault.azure.net", "myaadtenant",
                                    app="app_id", password="password")
key_vault("mykeyvault", token=token)


## End(Not run)

AzureKeyVault documentation built on Sept. 16, 2021, 5:12 p.m.