How to migrate Migrate my resources that use classic networking services to Azure Resource Manager

MINJEONG KIM 20 Reputation points
2024-08-27T10:57:36.2666667+00:00

I received email that Migrate your resources that use classic networking services to Azure Resource Manager before 31 August 2024.

I don't use classic networking services in Azure now.Why I receive this email?

Azure VPN Gateway
Azure VPN Gateway
An Azure service that enables the connection of on-premises networks to Azure through site-to-site virtual private networks.
1,514 questions
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,401 questions
{count} votes

Accepted answer
  1. KapilAnanth-MSFT 44,311 Reputation points Microsoft Employee
    2024-08-28T06:42:46.92+00:00

    @MINJEONG KIM ,

    Welcome to the Microsoft Q&A Platform. Thank you for reaching out & I hope you are doing well.

    As mentioned by Adharsh Santhanam , this could be a generic emailHowever, to validate whether there are classic resources running in your subscription,

    • 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.

    Thanks,

    Kapil


    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

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.