Package version:

Interface VaultCreateOrUpdateParameters

Parameters for creating or updating a vault

interface VaultCreateOrUpdateParameters {
    location: string;
    properties: VaultProperties;
    tags?: {
        [propertyName: string]: string;
    };
}

Properties

location: string

The supported Azure location where the key vault should be created.

properties: VaultProperties

Properties of the vault

tags?: {
    [propertyName: string]: string;
}

The tags that will be assigned to the key vault.