@JG
Thank you for reaching out to Microsoft Q&A.
If your custom domain is having CName
recording pointing to the root URL of the web app i.e., (https://<app.name>.azurewebsites.net) then there is no need to update your DNS records since CName
record is resolving to the Hostname of the webapp instead to particular IP.
Update:
App service Inbound public Ip won't be changed when you scale up your app service plan from standard to Premium SKU. your App inbound IP Might be changed due IP SSL based certificate got bind to the custom domain of your web app.
As mentioned here in this documentation. By default, your app uses a shared public IP address. when you bind a certificate with IP SSL based app service will create a new dedicated Ip address for your app. If you mapped A record to your app then you need update your domain registry with the new dedicated Ip address.
- Your app's Custom domain page is updated with the new, dedicated IP address. Copy this IP address, then remap the A record to this new IP address.
- If you have an SNI SSL binding to
<app-name>.azurewebsites.net
, remap any CNAME mapping to point to sni.<app-name>.azurewebsites.net
instead (add the sni
prefix).
Feel free to reach back to me if you have any further question on this.
Thanks,
Venkatesh.