Share via

az login not seeing my azure subscription

Daniel Cecchini 0 Reputation points
2026-05-13T17:02:48.6666667+00:00

I'm logged in, but the CLI isn't detecting any subscriptions, even though my account is active and I'm listed as the owner. I've tried multiple logins, different browsers, and directories, but the subscription never appears. What can I do? Also, what topics do I use for the support ticket with Microsoft? Their options don't seem to capture this issue, and I just can't type it out.

Cost Management
Cost Management

A Microsoft offering that enables tracking of cloud usage and expenditures for Azure and other cloud providers.


2 answers

Sort by: Most helpful
  1. Daniel Cecchini 0 Reputation points
    2026-05-13T19:27:21.8233333+00:00

    I did all of this and its still not seeing my subscription

    Was this answer helpful?


  2. Q&A Assist
    2026-05-13T17:03:16.8033333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Use the Azure CLI to verify and refresh the account context, then confirm directory and permissions.

    1. Check current login and tenant
         az account show
      
      If this fails or shows no subscription, list tenants:
         az account tenant list
      
    2. Refresh login and subscription list
      • Clear cached accounts and sign in again:
             az account clear
             az login
        
      • During az login (CLI 2.61.0+), use the subscription selector to explicitly choose the correct subscription. If needed, disable the selector and re-login:
             az config set core.login_experience_v2=off
             az login
        
    3. Verify available subscriptions
         az account list --output table
      
      If the subscription still does not appear, there may be a permissions or directory issue.
    4. Check directory and portal behavior
      • Sign in to the Azure portal and ensure the correct directory is selected from the account menu (top-right → Switch directory).
      • If the correct directory is selected but the portal shows No subscriptions found, the account likely lacks sufficient permissions. Have an administrator assign the Owner role (or equivalent) on the subscription.
    5. Handle timing/permission issues
      • If permissions were recently granted, close the terminal and open a new one, or run:
             az logout
             az login
        
      • Then re-run az account list and az account set --subscription <name-or-id> if the subscription appears.
    6. When to contact Microsoft support If the portal shows the subscription and the user is Owner, but az account list still shows nothing after the steps above, or if the portal itself shows No subscriptions found even though billing/activation is complete, open a support request. For the support ticket topics in the Azure portal:
      • Start from the Create a support request experience.
      • For Problem type, choose a billing/subscription/sign-in related option such as:
        • “Billing” or “Subscription” (for subscription visibility/activation issues), or
        • “Subscription sign-in issues” / “No subscriptions found” if available.
      • For Problem subtype, pick the closest match to “No subscriptions found” or “Cannot see subscription” under subscription or sign-in issues.
      If the flow shows suggested solutions instead of letting the ticket be submitted, use the Return to support request button (or equivalent) to get back to the case form and continue filling out details until the ticket is created.

    References:

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.