AzureKeyVault (version 1.0.3)

get_key_vault: Get existing Azure Key Vault

Description

Methods for the AzureRMR::az_resource_group class.

Value

For get_key_vault(), an object of class az_key_vault representing the vault.

For list_key_vaults(), a list of such objects.

Usage

get_key_vault(name)
list_key_vaults()

Arguments

  • name: For get_key_vault(), the name of the key vault.

See Also

create_key_vault, delete_key_vault, az_key_vault

Azure Key Vault documentation, Azure Key Vault API reference

Examples

Run this code
# NOT RUN {
rg <- AzureRMR::get_azure_login()$
    get_subscription("subscription_id")$
    get_resource_group("rgname")

rg$list_key_vaults()

rg$get_key_vault("mykeyvault")

# }

Run the code above in your browser using DataCamp Workspace