Classic Networking Services Migration

Al Jawad, Ahmed 20 Reputation points
2024-01-22T20:14:06.08+00:00

We receive a notification for classic networking services to Azure Resource Manager before 31 August 2024. How do I know which of my resources are classic networking services resources? Is there a way I know what of my resources will be impacted by this?

Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
2,622 questions
0 comments No comments
{count} votes

Accepted answer
  1. ChaitanyaNaykodi-MSFT 26,966 Reputation points Microsoft Employee
    2024-01-23T00:18:09.8166667+00:00

    @Al Jawad, Ahmed

    Thank you for reaching out.

    I understand you wish to know which classic resources are currently present in your subscription so that you can take action before retirement date of 31st August 2024.You can follow the steps mentioned below to identify these resources.

    Azure Portal:

    • On Azure Portal Home Page. In the left pane, select "All resources". User's image
    • Click on Type filter as shown below and Filter for Classic Services (As shown in the image). This should list all the Classic resources in your Subscription.

    User's image

    Azure PowerShell

    You can run the command below to get a list classic resource in your subscription. You can use Azure Cloud Shell to run the PowerShell commands below.

    $resources = Get-AzureRMResource
    $resources | Where-Object {$_.ResourceType -like "Microsoft.Classic*"}
    
    

    Hope this helps! Please let me know if you have any question here or need any additional help.


    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    2 people found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

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.