An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hi Dramane,
You should be able to work around the issue by first creating the resource group and storage account using Azure CLI and then when you create your Synapse Analytics workspace you would select the existing resource group and storage account.
To do this you may use Azure Cloud Shell and run commands similar to below (adjust location and names as needed:
az group create --name MySynapseGroup --location westus2
az storage account create --name contosolake493821as --resource-group MySynapseGroup --sku Standard_LRS --hns true --min-tls-version TLS1_2
In regards to the "There was an error trying to validate storage account name. Please try again" message you are seeing, unsure why you are getting this. Could be a transient issue. I tested right after you created your question and it worked fine for me--it gave proper message if the name was already taken, proper message if I attempted to use invalid characters, etc.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP