Hi Abe,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
It seems like you're experiencing an issue where the az login command hangs after showing your subscription IDs. Here are some troubleshooting steps that might help:
Make sure that you're using the latest version of Azure CLI, as updates often resolve known issues. You can update it using:
pip install --upgrade azure-cli
If the issue is related to fetching subscriptions, you can try logging in without fetching them:
az login --allow-no-subscriptions
After logging in, you can manually set the subscription later if needed:
az account set --subscription <subscription-id>
Clearing the Azure CLI cache can help resolve issues related to account sessions. Run the following command:
az account clear
If you're using VSCode's integrated terminal, try running the az login command in a standard Command Prompt or PowerShell window to see if that resolves the issue.
If you have any further queries, do let us know. If the comment is helpful, please click "Upvote".