Skip to content

Commit 0120615

Browse files
committed
edits
1 parent b83da08 commit 0120615

7 files changed

+114
-115
lines changed

articles/mysql/flexible-server/quickstart-create-arm-template.md

Lines changed: 20 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ms.date: 02/16/2023
2626

2727
## Create a server that has public access
2828

29-
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.
29+
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.
3030

3131
```json
3232
{
@@ -303,7 +303,7 @@ Modify the following code samples to create an Azure Database for MySQL flexible
303303
"MemoryOptimized"
304304
],
305305
"metadata": {
306-
"description": "The tier of the particular SKU. High Availability is available only for GeneralPurpose and MemoryOptimized sku."
306+
"description": "The tier of the specific SKU. High availability is available only for GeneralPurpose and MemoryOptimized SKUs."
307307
}
308308
},
309309
"version": {
@@ -321,7 +321,7 @@ Modify the following code samples to create an Azure Database for MySQL flexible
321321
"type": "string",
322322
"defaultValue": "1",
323323
"metadata": {
324-
"description": "Availability Zone information of the server. (Leave blank for No Preference)."
324+
"description": "The availability zone information of the server. (If you have no preference, leave blank.)"
325325
}
326326
},
327327
"haEnabled": {
@@ -333,14 +333,14 @@ Modify the following code samples to create an Azure Database for MySQL flexible
333333
"ZoneRedundant"
334334
],
335335
"metadata": {
336-
"description": "High availability mode for a server : Disabled, SameZone, or ZoneRedundant"
336+
"description": "High availability mode for a server: Disabled, SameZone, or ZoneRedundant"
337337
}
338338
},
339339
"standbyAvailabilityZone": {
340340
"type": "string",
341341
"defaultValue": "2",
342342
"metadata": {
343-
"description": "Availability zone of the standby server."
343+
"description": "The availability zone of the standby server."
344344
}
345345
},
346346
"storageSizeGB": {
@@ -363,7 +363,7 @@ Modify the following code samples to create an Azure Database for MySQL flexible
363363
"type": "string",
364364
"defaultValue": "Standard_B1ms",
365365
"metadata": {
366-
"description": "The name of the sku, e.g. Standard_D32ds_v4."
366+
"description": "The name of the SKU. For example, Standard_D32ds_v4."
367367
}
368368
},
369369
"backupRetentionDays": {
@@ -486,16 +486,16 @@ Modify the following code samples to create an Azure Database for MySQL flexible
486486

487487
## Deploy the template
488488

489-
Deploy the JSON file using either Azure CLI or Azure PowerShell.
489+
Deploy the JSON file by using either the Azure CLI or Azure PowerShell.
490490

491-
# [CLI](#tab/CLI)
491+
# [Azure CLI](#tab/CLI)
492492

493493
```azurecli
494494
az group create --name exampleRG --location eastus
495495
az deployment group create --resource-group exampleRG --template-file azuredeploy.json
496496
```
497497

498-
# [PowerShell](#tab/PowerShell)
498+
# [Azure PowerShell](#tab/PowerShell)
499499

500500
```azurepowershell
501501
New-AzResourceGroup -Name exampleRG -Location eastus
@@ -504,52 +504,46 @@ New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile azurede
504504

505505
---
506506

507-
Follow the instructions to enter the parameter values. When the deployment finishes, you should see a message indicating the deployment succeeded.
507+
Complete the steps to enter the parameter values. When the deployment finishes, message indicates a successful deployment.
508508

509509
## Review deployed resources
510510

511-
Follow these steps to verify if your Azure Database for MySQL flexible server instance was created in the resource group.
511+
To verify that your Azure Database for MySQL flexible server was created in the resource group:
512512

513-
# [CLI](#tab/CLI)
513+
# [Azure CLI](#tab/CLI)
514514

515515
```azurecli
516516
az resource list --resource-group exampleRG
517517
518518
```
519519

520-
# [PowerShell](#tab/PowerShell)
520+
# [Azure PowerShell](#tab/PowerShell)
521521

522522
```azurepowershell
523523
Get-AzResource -ResourceGroupName exampleRG
524524
```
525+
525526
---
526527

527528
## Clean up resources
528529

529-
To delete the resource group and the resources contained in the resource group:
530+
To delete the resource group and all the resources that are in the resource group:
530531

531-
# [CLI](#tab/CLI)
532+
# [Azure CLI](#tab/CLI)
532533

533534
```azurecli
534535
az group delete --name exampleRG
535536
```
536537

537-
# [PowerShell](#tab/PowerShell)
538+
# [Azure PowerShell](#tab/PowerShell)
538539

539540
```azurepowershell
540541
Remove-AzResourceGroup -Name exampleRG
541542
```
542543

543544
---
544545

545-
## Next steps
546-
547-
For a step-by-step tutorial that guides you through the process of creating an ARM template, see:
548-
549-
> [!div class="nextstepaction"]
550-
> [Tutorial: Create and deploy your first ARM template](../../azure-resource-manager/templates/template-tutorial-create-first-template.md)
551-
552-
For a step-by-step tutorial to build an app with App Service using MySQL, see:
546+
## Related content
553547

554-
> [!div class="nextstepaction"]
555-
> [Build a PHP (Laravel) web app with MySQL](tutorial-php-database-app.md)
548+
- For a step-by-step tutorial that guides you through the process of creating an ARM template, see [Tutorial: Create and deploy your first ARM template](../../azure-resource-manager/templates/template-tutorial-create-first-template.md).
549+
- For a step-by-step tutorial 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).

articles/mysql/flexible-server/quickstart-create-bicep.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ param serverEdition string = 'Burstable'
7373
])
7474
param version string = '8.0.21'
7575
76-
@description('The availability zone information for the server. (For no preference, leave blank.)')
76+
@description('The availability zone information for the server. (If you don't have a preference, leave blank.)')
7777
param availabilityZone string = '1'
7878
7979
@description('High availability mode for a server: Disabled, SameZone, or ZoneRedundant.')
@@ -325,14 +325,14 @@ resource database 'Microsoft.DBforMySQL/flexibleServers/databases@2021-12-01-pre
325325

326326
Deploy the Bicep file by using either the Azure CLI or Azure PowerShell.
327327

328-
# [CLI](#tab/CLI)
328+
# [Azure CLI](#tab/azure-cli)
329329

330330
```azurecli
331331
az group create --name exampleRG --location eastus
332332
az deployment group create --resource-group exampleRG --template-file main.bicep
333333
```
334334

335-
# [PowerShell](#tab/PowerShell)
335+
# [AzurePowerShell](#tab/azure-powershell)
336336

337337
```azurepowershell
338338
New-AzResourceGroup -Name exampleRG -Location eastus
@@ -347,14 +347,14 @@ Follow the instructions to enter the parameter values. When the deployment finis
347347

348348
Follow these steps to verify if your Azure Database for MySQL flexible server instance was created in the resource group.
349349

350-
# [CLI](#tab/CLI)
350+
# [Azure CLI](#tab/azure-cli)
351351

352352
```azurecli
353353
az resource list --resource-group exampleRG
354354
355355
```
356356

357-
# [PowerShell](#tab/PowerShell)
357+
# [Azure PowerShell](#tab/azure-powershell)
358358

359359
```azurepowershell
360360
Get-AzResource -ResourceGroupName exampleRG
@@ -366,13 +366,13 @@ Get-AzResource -ResourceGroupName exampleRG
366366

367367
To delete the resource group and the resources contained in the resource group:
368368

369-
# [CLI](#tab/CLI)
369+
# [Azure CLI](#tab/azure-cli)
370370

371371
```azurecli
372372
az group delete --name exampleRG
373373
```
374374

375-
# [PowerShell](#tab/PowerShell)
375+
# [PowerShell](#tab/azure-powershell)
376376

377377
```azurepowershell
378378
Remove-AzResourceGroup -Name exampleRG

0 commit comments

Comments
 (0)