Compartir a través de


Habilitar y deshabilitar un secreto de Azure Key Vault con JavaScript

Cree SecretClient con las credenciales de autenticación de programación adecuadas y, a continuación, use el cliente para habilitar y deshabilitar un secreto de Azure Key Vault.

Habilitar un secreto

Para habilitar un secreto de Azure Key Vault, emplee el método updateSecretProperties de la clase SecretClient.

const name = 'mySecret';
const version= 'd9f2f96f120d4537ba7d82fecd913043'

const properties = await client.updateSecretProperties(
    secretName,
    version,
    { enabled: true }
);

// get secret value
const { value } = await client.getSecret(secretName, version);

Este método devuelve el objeto SecretProperties.

Deshabilitar un nuevo secreto

Para deshabilitar un secreto cuando se cree, use el método setSecret con la opción habilitado establecido en False.

const mySecretName = 'mySecret';
const mySecretValue = 'mySecretValue';

// Success
const { name, value, properties } = await client.setSecret(
    mySecretName, 
    mySecretValue, 
    { enabled: false }
);

// Can't read value of disabled secret
try{
    const secret = await client.getSecret(
        mySecretName, 
        properties.version
    );
} catch(err){
    // `Operation get is not allowed on a disabled secret.`
    console.log(err.message);
}

Deshabilitar un secreto existente

Para deshabilitar un secreto de Azure Key Vault existente, emplee el método updateSecretProperties de la clase SecretClient.

const name = 'mySecret';
const version= 'd9f2f96f120d4537ba7d82fecd913043';

// Success
const properties = await client.updateSecretProperties(
    secretName,
    version,
    { enabled: false }
);

// Can't read value of disabled secret
try{
    const { value } = await client.getSecret(secretName, version);
} catch(err){
    // `Operation get is not allowed on a disabled secret.`
    console.log(err.message);
}

Este método devuelve el objeto SecretProperties.

Pasos siguientes