Public IP SKU update issue

Nasimjon Tohirov 261 Reputation points
2025-04-14T07:59:23.7366667+00:00

Hello,

I am in the process of transitioning a public IP address from dynamic to static. As part of this change, I also want to update the SKU from Basic to Standard. However, I am encountering the following error:

azure

azure2

Could you please assist me in resolving this issue or advise on the correct steps to perform this change?

Thank you in advance for your support.

Best regards, Nasimjon

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

Accepted answer
  1. TP 117.2K Reputation points
    2025-04-16T07:03:10.5733333+00:00

    Hi Nasimjon,

    It appears you are attempting to upgrade Basic Public IP address attached to VM to Standard Public IP. Please let me know if my understanding is incorrect.

    Below instructions are for converting Basic Dynamic to Standard. Based on your screenshot you have already switched to Static so you will be able to skip step#1 and step#2, but it is good to review them regardless.

    1. Please navigate to the Basic Public IP address -- Settings -- Configuration, select Static, click Save.

    User's image

    After several seconds you should see notification in upper right corner saying that it saved public IP changes.

    User's image

    A message will show up at top saying that "This public IP address can't be updated because it is associated to the IP configuration..", that's normal.

    2. Click on Overview blade on left, next click on Properties tab and verify it still says Static. Hit F5 to refresh the page, and double-check Properties tab again (still should say Static).

    User's image

    3. Now you are ready to click Dissociate, make note of your VM's network interface name, then click Yes to confirm. Network activity from public Internet to your VM will be interrupted at this point.

    User's image

    User's image

    User's image

    4. Once that's done click the Upgrade to Standard SKU link at top, check box and Yes. Typically only takes seconds to upgrade, look for notification in upper right.

    User's image

    User's image

    User's image

    5. When upgrade has finished, click Associate , select Resource type: Network interface and select your VM's network interface from the dropdown, and click OK. This is where the note you made above with your VM's network interface name may be helpful.

    User's image

    Please click Accept Answer and upvote if the above was helpful.

    Thanks.

    -TP


1 additional answer

Sort by: Most helpful
  1. Ganesh Patapati 5,440 Reputation points Microsoft External Staff
    2025-04-15T11:58:34.0733333+00:00

    Hello Nasimjon Tohirov

    Thanks for the response!

    This is a cosmetic issue with the portal, and PowerShell would be the best method to upgrade the basic to standard SKU public IP.

    I set up a lab where, with the help of a PowerShell command, I was able to upgrade from Basic to Standard as shown in the attached screenshot.

    Screenshot1: Basic SKU

    User's image Screenshot2: Standard SKUUser's image Refer the docs: Upgrade public IP address Powershell Command

    ### Place the public IP address into a variable. ###
    $ip = @{
        Name = 'myBasicPublicIP'
        ResourceGroupName = 'myResourceGroup'
    }
    $pubIP = Get-AzPublicIpAddress @ip
    ### Set the SKU to standard. ###
    $pubIP.Sku.Name = 'Standard'
    Set-AzPublicIpAddress -PublicIpAddress $pubIP
    
    

    I hope this has been helpful!

    Can you please update us if the action plan provided by was helpful?

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


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.