Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #428 - Fix Azure Database for MySQL workflows #430

Merged
merged 1 commit into from Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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