Hello Totte Perera,
Consider using Azure Powershell as UI might be facing some transient issues.
1. Install the Az PowerShell module.
Below contains the step-by-step instructions to install.
Install Azure PowerShell on Windows | Microsoft Learn
2. Run Connect-AzAccount to authenticate.
3. Use New-AzRedisEnterpriseCache to create the instance.
az redis create \
--location eastus \
--name MyRedisCache \
--resource-group MyResourceGroup \
--sku Basic \
--vm-size C1
Explanation:
--location: Azure region (e.g., eastus, westus2)
--name: Unique name for your Redis instance
--resource-group: The resource group to contain the cache
--sku: Pricing tier (Basic, Standard, Premium)
--vm-size: Size of the virtual machine (e.g., C0, C1)
Let us know if you have further queries?
Please click Accept Answer if the above was helpful.
Thanks.