on the step create an Azure Database for MySQL-server
Command:
▶ az mysql server create --resource-group myResourceGroup --name <mysql-server-name> --location "South Central US" --admin-user adminuser --admin-password My5up3rStr0ngPaSw0rd! --sku-name B_Gen4_1 --version 5.7
log messages given by the failure
Deployment failed. Correlation ID: 0df20b54-0307-427c-9639-fd8fdfd6c8f8. Gen4 hardware is not supported for this region.
Also: using My5up3rStr0ngPaSw0rd! did not work properly (this could however be my setup causing the issue, but if anybody runs into a similar problem it could be worth mentioning) this was solved it by removing ! from --admin-password ending.
Expected/desired behavior
Give suggestion of similar available hardware in the choosen region
OS and Version?
MacOs Mojave & Iterm
Mention any other details that might be useful
I solved this issue by using:
--sku-name B_Gen5_2 --version 5.7
Full command:
▶ az mysql server create --resource-group ComposeTest --name composetestmysqldatabase123 --location "North Europe" --admin-user adminuser --admin-password My5up3rStr0ngPaSw0rd --sku-name B_Gen5_2 --version 5.7
[X] bug report
Minimal steps to reproduce
on the step create an Azure Database for MySQL-server Command:
▶ az mysql server create --resource-group myResourceGroup --name <mysql-server-name> --location "South Central US" --admin-user adminuser --admin-password My5up3rStr0ngPaSw0rd! --sku-name B_Gen4_1 --version 5.7
log messages given by the failure
Also: using
My5up3rStr0ngPaSw0rd!
did not work properly (this could however be my setup causing the issue, but if anybody runs into a similar problem it could be worth mentioning) this was solved it by removing!
from--admin-password
ending.Expected/desired behavior
OS and Version?
Mention any other details that might be useful
I solved this issue by using:
--sku-name B_Gen5_2 --version 5.7
Full command: