Forrest logo
back to the az tool

az-logout:tldr:21c75

az-logout: Log out a specific username.
$ az logout --username ${alias@somedomain-com}
try on your machine

The given command "az logout --username ${alias@somedomain-com}" is used to log out of Azure CLI (Command-Line Interface) with the specified username.

Here's a breakdown of the command parts:

  • "az logout": This is the base command for logging out of Azure CLI. Running this will remove the currently logged-in credentials.
  • "--username": This is an option that specifies the username to be used for logging out.
  • "${alias@somedomain-com}": This is a placeholder indicating that you need to replace it with your actual username. The format "alias@somedomain-com" represents an email-like address where "alias" is the part before the "@" symbol, and "somedomain-com" is the domain name.

For example, if your username is "john.doe@example.com", you would modify the command as follows: "az logout --username john.doe@example-com". This would log out the user "john.doe@example.com" from Azure CLI.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool