Skip to content

Commit a24352e

Browse files
Update build-image-with-packer.md
1 parent f29a0d3 commit a24352e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/virtual-machines/linux/build-image-with-packer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You use the output from these two commands in the next step.
6060

6161
## Define Packer template
6262

63-
To build images, you create a template as a JSON file. In the template, you define builders and provisioners that carry out the actual build process. Packer has a [provisioner for Azure](https://www.packer.io/docs/builders/azure.html) that allows you to define Azure resources, such as the service principal credentials created in the preceding step.
63+
To build images, you create a template as a JSON file. In the template, you define builders and provisioners that carry out the actual build process. Packer has a [provisioner for Azure](https://developer.hashicorp.com/packer/plugins/builders/azure) that allows you to define Azure resources, such as the service principal credentials created in the preceding step.
6464

6565
Create a file named *ubuntu.json* and paste the following content. Enter your own values for the following parameters:
6666

@@ -89,7 +89,7 @@ Create a file named *ubuntu.json* and paste the following content. Enter your ow
8989
"os_type": "Linux",
9090
"image_publisher": "Canonical",
9191
"image_offer": "UbuntuServer",
92-
"image_sku": "16.04-LTS",
92+
"image_sku": "20.04-LTS",
9393

9494
"azure_tags": {
9595
"dept": "Engineering",
@@ -129,7 +129,7 @@ source "azure-arm" "autogenerated_1" {
129129
client_secret = "0e760437-bf34-4aad-9f8d-870be799c55d"
130130
image_offer = "UbuntuServer"
131131
image_publisher = "Canonical"
132-
image_sku = "16.04-LTS"
132+
image_sku = "20.04-LTS"
133133
location = "East US"
134134
managed_image_name = "myPackerImage"
135135
managed_image_resource_group_name = "myResourceGroup"

0 commit comments

Comments
 (0)