Skip to content

Commit

Permalink
Fixes #428 - Fix Azure Database for MySQL workflows (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Mar 18, 2024
1 parent 86a1f7d commit 1ee34b3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions mysql/create/README.md
Expand Up @@ -44,6 +44,7 @@ To create the Azure Database for MySQL setup the following environment variables

And then create the MySQL database using the command line below:

<!-- workflow.skip() -->
```shell

az mysql server create \
Expand All @@ -56,6 +57,20 @@ And then create the MySQL database using the command line below:

```

<!-- workflow.run()
az mysql server create \
--admin-user $MYSQL_USERNAME \
--admin-password $MYSQL_PASSWORD \
--name $MYSQL_NAME \
--resource-group $RESOURCE_GROUP \
--sku B_Gen5_1 \
--ssl-enforcement Disabled || true
sleep 60
-->

## Cleanup

Do NOT forget to remove the resources once you are done running the example.
Expand Down

0 comments on commit 1ee34b3

Please sign in to comment.