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,543 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,472 questions
{count} votes

Accepted answer
  1. KapilAnanth-MSFT 46,016 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

1 additional answer

Sort by: Most helpful
  1. Adharsh Santhanam 4,135 Reputation points
    2024-08-27T16:08:50.93+00:00

    Hello MINJEONG KIM, even if you don’t currently use these services, the email is likely a general notification sent to all Azure users to ensure everyone is aware of the upcoming changes. This helps prevent any potential service disruptions for those who might still be using classic networking services. If you’re certain that you don’t use any classic networking services, you can disregard the email. However, it’s always a good idea to double-check your resources to ensure nothing is overlooked.

    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    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.