Cannot access resources in client subscription in certain blades

Justin Tolchin 21 Reputation points
2025-04-24T16:02:39.9366667+00:00

When following the steps on https://learn.microsoft.com/en-us/azure/network-watcher/nsg-flow-logs-migrate, I get all the way to the end, but when I try to delete the old watcher, I get a popup saying "Interaction Required", sign in again or ignore. I've tried both options and just get in a loop, even after successful authentication and MFA.

I set up the subscription and everything in it. This started happening a couple weeks ago with another resource. Now it is happening here. I can go to all the different blades, but when I start to dig deeper (like with storage) or try to delete as is the case here, I am blocked.

{
  "sessionId": "c987311f7007410688e1f144283e41e0",
  "errors": [
    {
      "errorMessage": "invalid_grant: xxxxxxxx Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access xxxxxxxxxxxxxxxxxxxxxxxx;. Trace ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx Correlation ID: xxxxxxxxxxxxxxxx Timestamp: 2025-04-24 15:49:16Z",
      "clientId": "xxxxxxxxxxxxxxxxxxxxx",
      "scopes": [
        "xxxxxxxxxxxxxxxxxxxxxxxxxx/.default"
      ]
    }
  ]
}
Azure Network Watcher
Azure Network Watcher
An Azure service that is used to monitor, diagnose, and gain insights into network performance and health.
187 questions
{count} votes

Accepted answer
  1. Venkat V 1,800 Reputation points Microsoft External Staff
    2025-04-29T05:39:51.3933333+00:00

    Hi @Justin Tolchin

    If you're facing issues in the portal, you can also try logging in using PowerShell or Azure CLI with the commands below.

    Powershell

    Connect-AzAccount -TenantId <Tenant ID> -SubscriptionId <> -UseDeviceAuthentication
    

    Azure CLI

    az login --tenant <myTenantID> --use-device-code
    az account set --subscription "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    

    After logging in to the correct subscription and tenant, try deleting the Network Watcher flow log using the cmdlet below.

    Remove-AzNetworkWatcherFlowLog -Name 'myVNetFlowLog' -Location 'eastus
    

    Reference: Remove-AzNetworkWatcherFlowLog

    If the above is unclear and/or you are unsure about something, add a comment below.

    Please don’t forget to close the thread by clicking "Accept the answer" wherever the information provided helps you, as this can be beneficial to other community members.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Justin Tolchin 21 Reputation points
    2025-04-29T16:54:05.27+00:00

    The answer is: the portal is broken.

    As of today, I am no longer getting the Interaction Required. I am getting failed to delete due to undefined error.

    I was able to delete the flow log via CLI with help from Vallepu using:

    Connect-AzAccount -TenantId xxxxxxxxxx -SubscriptionId xxxxxxxxxx -UseDeviceAuthentication

    Remove-AzNetworkWatcherFlowLog -Name 'my-flowlog' -Location 'eastus'

    Also, the other page, storage, is no longer challenging me either.

    0 comments No comments

Your answer

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