Supprimer une access key

Vous pouvez supprimer une ou plusieurs access keys associées à votre compte si vous n’en avez plus besoin.

Supprimer une access key avec Cockpit v2

  1. Dans le coin supérieur droit, cliquez sur vos initiales.
    Un menu déroulant apparaît.

  2. Cliquez sur IconUserKey Access keys.
    La boîte de dialogue CONFIRMATION DU MOT DE PASSE apparaît.

  3. Entrez votre mot de passe actuel et cliquez sur Soumettre.
    La liste de vos access keys apparaît.

  4. Sélectionnez l’access key que vous voulez supprimer.
    L’access key est sélectionnée et un menu d’actions apparaît.

  5. Cliquez sur IconTerminate Supprimer.
    Une boîte de dialogue de confirmation apparaît.

  6. Cliquez sur Supprimer.
    L’access key est supprimée.

Supprimer une access key avec OSC CLI

À ce jour, cette section est disponible en anglais uniquement.

The DeleteAccessKey command deletes the specified access key of either your root account or an EIM user.

The access key of an EIM user must be in the INACTIVE state to be deleted.

Request sample: Deleting one of your own access keys (if you are the root account or an EIM user)
$ osc-cli api DeleteAccessKey --profile "default" \
    --AccessKeyId "ABCDEFGHIJ0123456789"
Request sample: Deleting the access key of a specific EIM user
$ osc-cli api DeleteAccessKey --profile "default" \
    --AccessKeyId "ABCDEFGHIJ0123456789" \
    --UserName "example-user"
Request sample: Example with login/password authentication
$ osc-cli api DeleteAccessKey --profile "default" --authentication-method "password" --login "$OSC_EMAIL" --password "$OSC_PASSWORD" \
    --AccessKeyId "ABCDEFGHIJ0123456789" \
    --UserName "example-user"

This command contains the following attributes that you need to specify:

  • AccessKeyId: The ID of the access key you want to delete.

  • DryRun: (optional) If true, checks whether you have the required permissions to perform the action.

  • UserName: (optional) The name of the EIM user the access key you want to delete is associated with. By default, the user who sends the request (which can be the root account).

The DeleteAccessKey command returns the following elements:

  • ResponseContext: Information about the context of the response.

Result sample
{
  "ResponseContext": {
    "RequestId": "0475ca1e-d0c5-441d-712a-da55a4175157"
  }
}

Pages connexes

Méthodes API correspondantes