Azure / azure-resource-manager-schemas

Schemas used to author and validate Resource Manager Templates. These schemas power the intellisense and syntax completion in our ARM Tools VSCode extension, as well as the Export Template API
MIT License
611 stars 517 forks source link

Internal server error encountered when deploying Microsoft.Sql/servers/azureADOnlyAuthentications resource #1818

Open richardcarrigan opened 3 years ago

richardcarrigan commented 3 years ago

When deploying the following resource within a resource group ARM template, including the SQL server that it depends on:

    {
      "type": "Microsoft.Sql/servers/azureADOnlyAuthentications",
      "apiVersion": "2021-02-01-preview",
      "name": "[concat(variables('sqlServerName'), '/Default')]",
      "dependsOn": [
        "[resourceId('Microsoft.Sql/servers', variables('sqlServerName'))]"
      ],
      "properties": {
        "azureADOnlyAuthentication": false
      }
    },

I receive the following deployment error message:

{
    "status": "Failed",
    "error": {
        "code": "InternalServerError",
        "message": "An unexpected error occured while processing the request. Tracking ID: 'dc219c17-1b09-487b-80e0-7fdfd158a310'"
    }
}

Thanks in advance for any assistance in resolving this issue, and for maintaining such useful resources!

ghost commented 3 years ago

Hello @azureSQLGitHub! It looks like there is a schemas issue that needs your attention. Please investigate and confirm it is on your end. Thanks :smile:

Issue Details
When deploying the following resource within a resource group ARM template, including the SQL server that it depends on: ``` { "type": "Microsoft.Sql/servers/azureADOnlyAuthentications", "apiVersion": "2021-02-01-preview", "name": "[concat(variables('sqlServerName'), '/Default')]", "dependsOn": [ "[resourceId('Microsoft.Sql/servers', variables('sqlServerName'))]" ], "properties": { "azureADOnlyAuthentication": false } }, ``` I receive the following deployment error message: ``` { "status": "Failed", "error": { "code": "InternalServerError", "message": "An unexpected error occured while processing the request. Tracking ID: 'dc219c17-1b09-487b-80e0-7fdfd158a310'" } } ``` Thanks in advance for any assistance in resolving this issue, and for maintaining such useful resources!
Author: nihonjinboy85
Assignees: -
Labels: `Needs: Triage :mag_right:`, `RP:SQL`
Milestone: -