Skip to content

Commit ac4e416

Browse files
Refine Azure ARM template documentation for clarity and consistency
1 parent 8248366 commit ac4e416

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

content/learning-paths/servers-and-cloud-computing/azure-arm-template/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ learning_objectives:
1313

1414
prerequisites:
1515
- An Azure subscription with permissions to create resource groups, virtual machines, and networking resources
16-
- Azure CLI installed on your local machine (see the [Azure CLI install guide](/install-guides/azure-cli/))
16+
- Azure CLI installed on your local machine - see the [Azure CLI install guide](/install-guides/azure-cli/)
1717
- An SSH key pair for authentication
1818

1919
author: Pareena Verma

content/learning-paths/servers-and-cloud-computing/azure-arm-template/create-template.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
2-
title: Create the Resource Manager template
2+
title: Create the Azure Resource Manager template
33
weight: 3
44

55
### FIXED, DO NOT MODIFY
66
layout: learningpathall
77
---
88

9-
## Azure Resource Manager template structure
9+
## Understand the Azure Resource Manager template structure
1010

11-
An Azure Resource Manager template consists of several key sections:
11+
An Azure Resource Manager template is a JSON file organized into six sections:
12+
- `$schema`: defines the template language version
13+
- `contentVersion`: your template's version number
14+
- `parameters`: input values that customize the deployment
15+
- `variables`: computed values used throughout the template
16+
- `resources`: Azure resources to create
17+
- `outputs`: values returned after deployment
1218

13-
- **$schema**: Defines the template language version
14-
- **contentVersion**: Your template's version number
15-
- **parameters**: Input values that customize the deployment
16-
- **variables**: Computed values used throughout the template
17-
- **resources**: Azure resources to create
18-
- **outputs**: Values returned after deployment
1919

2020
## Create the template file
2121

content/learning-paths/servers-and-cloud-computing/azure-arm-template/deploy-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploy the template
2+
title: Deploy the Azure Resource Manager template
33
weight: 4
44

55
### FIXED, DO NOT MODIFY
@@ -132,7 +132,7 @@ cobaltdemo-vm_OsDisk_1_a3e13c940d07463cace48cfd1458a151 COBALT-RG eastus
132132

133133
The output shows the resources created: virtual machine, network interface, public IP address resource, virtual network, network security groups, and OS disk.
134134

135-
## Retrieve the VM's public IP address
135+
## Retrieve the Cobalt 100 VM public IP address
136136

137137
Get the public IP address to connect to your VM:
138138

content/learning-paths/servers-and-cloud-computing/azure-arm-template/verify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lscpu
3636

3737
The output shows details about the Cobalt 100 processor, including Architecture (aarch64), CPU count (four for Standard_D4ps_v6), and Vendor ID (ARM).
3838

39-
## Check system information
39+
## View Cobalt 100 system information
4040

4141
View detailed system information:
4242

@@ -72,7 +72,7 @@ lsb_release -a
7272

7373
The output confirms Ubuntu 24.04 LTS (Noble Numbat).
7474

75-
## Install and test software
75+
## Install and test software on Arm64
7676

7777
Update the package lists and install a simple application to verify everything works:
7878

0 commit comments

Comments
 (0)