I have a cloud service in Azure that I want to give a reserved IP to. I basically followed the steps here: https://azure.microsoft.com/en-us/documentation/articles/virtual-networks-reserved-public-ip/
I performed the "New-AzureReservedIP" cmd, giving an ip name of "MyIPName" and a location of the East US - the same location of my current cloud service.
In my service config, I used the following:
<NetworkConfiguration>
<AddressAssignments>
<ReservedIPs>
<ReservedIP name="MyIPName"/>
</ReservedIPs>
</AddressAssignments>
</NetworkConfiguration>
When I attempted to deploy my cloud service, I got the error "The Reserved IP MyIPName does not exist. Although I just created it, its not recognizing my aptly named reserved ip address. Thoughts?