Package version:

Interface KeyVaultSecretIdentifier

Represents the segments that compose a Key Vault Secret Id.

interface KeyVaultSecretIdentifier {
    name: string;
    sourceId: string;
    vaultUrl: string;
    version?: string;
}

Properties

name: string

The name of the Key Vault Secret.

sourceId: string

The complete representation of the Key Vault Secret Id. For example:

https://.vault.azure.net/secrets//

vaultUrl: string

The URL of the Azure Key Vault instance to which the Secret belongs.

version?: string

The version of Key Vault Secret. Might be undefined.