Like the error says it is either there is a missing or incorrect configuration sku
property in the deployment template or configuration.
So, go to the ARM template or Bicep file used for deployment and ook for the sku
property in the Microsoft.Storage/storageAccounts
or Microsoft.Synapse/workspaces
resource definitions.
Example for a storage account :
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2022-09-01",
"name": "[parameters('storageAccountName')]",
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2",
"location": "[parameters('location')]",
...
}
Example for a Synapse workspace :
{
"type": "Microsoft.Synapse/workspaces",
"apiVersion": "2022-10-01",
"name": "[parameters('workspaceName')]",
"sku": {
"name": "DW100c"
},
"location": "[parameters('location')]",
...
}
Links to help you :
https://learn.microsoft.com/en-us/azure/synapse-analytics/known-issues
https://github.com/hashicorp/terraform-provider-azurestack/issues/308
[https://learn.microsoft.com/en-us/answers/questions/1348172/((error-((code-invalidrequestcontent-message-the-r](https://learn.microsoft.com/en-us/answers/questions/1348172/((error-((code-invalidrequestcontent-message-the-r)