You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/mysql/flexible-server/quickstart-create-arm-template.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: 'Quickstart: Create using ARM template'
3
-
description: In this Quickstart, learn how to create an Azure Database for MySQL - Flexible Server instance by using an ARM template.
2
+
title: 'Quickstart: Create a flexible server by using Azure Resource Manager'
3
+
description: In this quickstart, learn how to deploy a database in an instance of Azure Database for MySQL - Flexible Server by using an Azure Resource Manager template.
Create an **azuredeploy.json** file with the following content to create an Azure Database for MySQL flexible server instance using public access connectivity method and also create a database on the server. Update the **firewallRules** default value if needed.
30
30
@@ -254,9 +254,9 @@ Create an **azuredeploy.json** file with the following content to create an Azur
254
254
}
255
255
```
256
256
257
-
## Create a server with private access
257
+
## Create a server that has private access
258
258
259
-
Create an **azuredeploy.json** file with the following content to create an Azure Database for MySQL flexible server instance using private access connectivity method inside a virtual network.
259
+
Modify the following code samples to create an Azure Database for MySQL flexible server that has private access connectivity inside a virtual network:
Create a **main.bicep** file and a **CreateFirewallRules.bicep** file with the following content to create an Azure Database for MySQL flexible server instance using public access connectivity method and also create a database on the server. Update the **firewallRules** default value if needed.
29
+
Modify the following code samples to create a *main.bicep* file and a *CreateFirewallRules.bicep* file. Use the files to create an Azure Database for MySQL flexible server that has public access and to create a database on the server. You might need to modify the `firewallRules` default value.
30
30
31
-
**main.bicep**
31
+
*main.bicep*:
32
32
33
33
```bicep
34
34
@description('Provide a prefix for creating resource names.')
Create an **main.bicep** file with the following content to create an Azure Database for MySQL flexible server instance using private access connectivity method inside a virtual network.
180
+
Modify the following code samples to deploy an Azure Database for MySQL flexible server that has private access inside a virtual network:
181
181
182
182
```bicep
183
183
@description('Provide a prefix for creating resource names.')
For a step-by-step tutorial that guides you through the process of creating a Bicep template, see:
385
-
386
-
> [!div class="nextstepaction"]
387
-
> [Quickstart: Create Bicep files with Visual Studio Code](../../azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio-code.md)
388
-
389
-
For a step-by-step tutorial to build an app with App Service using MySQL, see:
383
+
## Related content
390
384
391
-
> [!div class="nextstepaction"]
392
-
> [Build a PHP (Laravel) web app with MySQL](tutorial-php-database-app.md)
385
+
- For a step-by-step tutorial that guides you through the process of creating a Bicep template, see [Quickstart: Create Bicep files with Visual Studio Code](../../azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio-code.md).
386
+
- For a step-by-step tutorial that shows how to build an app by using Azure App Service and MySQL, see[Build a PHP (Laravel) web app with MySQL](tutorial-php-database-app.md).
0 commit comments