Add Reserved IP to Azure Cloud Service -


i have cloud service in azure want give reserved ip to. followed steps here: https://azure.microsoft.com/en-us/documentation/articles/virtual-networks-reserved-public-ip/

i performed "new-azurereservedip" cmd, giving ip name of "myipname" , location of east - same location of current cloud service.

in service config, used following:

    <networkconfiguration>         <addressassignments>         <reservedips>         <reservedip name="myipname"/>       </reservedips>     </addressassignments>   </networkconfiguration> 

when attempted deploy cloud service, got error "the reserved ip myipname not exist. although created it, not recognizing aptly named reserved ip address. thoughts?

i had same problem after creating reserved ip through azure portal. answer june 2015 did not work me. me solution use powershell connect azure subscription , full name of reserved ip , use in service config. full name of reserved ip in format "group {resource name} {reserved ip name}".

publishing visual studio 2013 worked.

to confirm wasn't timing issue tried again using {reserved ip name} value , found still did not work (ie received error: reserved ip xyz not exist.). hence seem full reserved ip name must used when has been created azure portal , publishing visual studio.

note: using classic app service.


Comments