Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi Luke Kolodziej,
The error message you are encountering is indicating that there is an unexpected internal server error. This error can be caused by a temporary problem with the Azure servers.
You can try to resolve this issue by retrying the deployment. If the issue persists, you can try to get more details by enabling debug logging when running the deployment.
If retrying does not resolve the issue, can you please check here to see how to check the deployment logs, which should provide more detailed error messaging.
- Check Deployment Logs in Azure Portal:
- Go to the Resource Group > Deployments section and inspect the detailed logs for the failed deployment. Look for any specific error messages or failed operations.
- Enable Verbose Logging in Your Script:
- Add detailed logging to your deployment script to capture API responses and errors from GoDaddy.
- Retry the Deployment:
- Since this might be a transient issue, retrying the deployment after a short wait can sometimes resolve it.
- Test the Script Outside Azure:
- Run the script locally or in a test environment to verify that the GoDaddy API calls work as expected.
- Use
az deployment-scriptsCLI for Debugging:- You can inspect the deployment script resource using powershell:
az`` deployment-scripts show --name <script-name> --resource-group <rg-name>
- You can inspect the deployment script resource using powershell:
Let me know , if you need further assistance.