Update LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md

This commit is contained in:
staleycyn 2024-01-25 07:44:49 -08:00 committed by GitHub
parent 5aced6ba7e
commit 1db3a75a9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,18 +32,16 @@ Your team has explored the basic Azure administrative capabilities such as provi
## Tasks
+ Task 1: Create an Azure Resource Manager template for deployment of an Azure managed disk.
+ Task 2: Edit an Azure Resource Manager template and then create an Azure managed disk by using the template.
+ Task 3: Review the Azure Resource Manager template-based deployment of the managed disk.
+ Task 1: Create an Azure Resource Manager template.
+ Task 2: Edit an Azure Resource Manager template and redeploy the template.
+ Task 3: Review an Azure Resource Manager template-based deployment.
+ Task 4: Deploy a template with Azure PowerShell (option 1).
+ Task 5: Deploy a template with the CLI (option 2).
+ Task 6: Deploy a managed disk by using Azure Bicep.
## Task 1: Create an Azure Resource Manager template
## Task 1: Create an Azure Resource Manager template for deployment of an Azure managed disk
In this task, you use the Azure portal to generate an Azure Resource Manager template. You can then download the template to use in future deployments. An organization that plans to deploy hundreds or thousands of disks could leverage one or more templates to help automate the deployments.
In this task, you use the Azure portal to generate an Azure Resource Manager template. You can then download the template to use in future deployments. An organization that plans to deploy hundreds or thousands of disks could leverage one or more templates to help automate the deployments. In this task, we will use a template to deploy a managed disk. Managed disks are storage designed to be used with virtual machines.
1. Sign in to the **Azure portal** - `https://portal.azure.com`.
@ -82,7 +80,7 @@ In this task, you use the Azure portal to generate an Azure Resource Manager tem
>**Note:** You can export an entire resource group or just specific resources within that resource group.
## Task 2: Edit an Azure Resource Manager template and then create an Azure managed disk by using the template
## Task 2: Edit an Azure Resource Manager template and then redeploy the template
In this task, you use the template that you created to deploy a new managed disk. This task outlines the general process of having template-based deployments so that you can quicky and easily repeat deployments. If you need to change a parameter or two, you can easily modify the template in the future.
@ -140,7 +138,7 @@ In this task, you use the template that you created to deploy a new managed disk
1. Verify that the deployment completed successfully.
## Task 3: Review the Azure Resource Manager template-based deployment of the managed disk
## Task 3: Review an Azure Resource Manager template-based deployment
In this task, you verify that the deployment has finished successfully. All prior deployments are documented in the resource group that the deployment was targeted to. This review shows the details around the time and length of deployment, which can be helpful when troubleshooting. It is often a good practice to review the first few template-based deployments to ensure success prior to using the templates for large-scale operations.