Failed to create public IP address

Lixin Yang 21 Reputation points
2022-03-09T14:30:37.597+00:00

I tried to provision a public IP address on Azure.

I kept getting the following error without details even though I made multiple tries with different names and locations for the intended public IP.

  "statusCode": "Conflict",
  "statusMessage": {
    "status": "Failed",
    "error": {
      "code": "InternalServerError",
      "message": "An error occurred.",
      "details": []
    }
  },

At creation stage, the validation always succeeded. However, the deployment always failed.

Anybody experienced the same problem and worked out a solution? Your help will be highly appreciated!

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,956 questions
0 comments No comments
{count} votes

Accepted answer
  1. Udaiappa Ramachandran 726 Reputation points MVP
    2022-03-10T03:02:54.807+00:00

    I assume you are using the ARM/Bicep template, make sure the name attribute is unique
    "type": "Microsoft.Network/publicIPAddresses",
    "apiVersion": "2020-11-01",
    "name": "[variables('publicIPName')]", //This should be Unqiue


0 additional answers

Sort by: Most helpful