Description Fields See Also Examples
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.
keys
: A sub-object for working with encryption keys stored in the vault. See keys.
secrets
: A sub-object for working with secrets stored in the vault. See secrets.
certificates
: A sub-object for working with certificates stored in the vault. See certificates.
storage
: A sub-object for working with storage accounts managed by the vault. See storage.
key_vault, keys, secrets, certificates, storage
Azure Key Vault documentation, Azure Key Vault API reference
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.