Skip to content

Commit d2aff69

Browse files
committed
Acrolinx edits
1 parent 7e88b0b commit d2aff69

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/virtual-machines/linux/tutorial-custom-images.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To open the Cloud Shell, just select **Try it** from the upper right corner of a
5858

5959
A gallery is the primary resource used for enabling image sharing.
6060

61-
Allowed characters for gallery name are uppercase or lowercase letters, digits, dots, and periods. The gallery name cannot contain dashes. Gallery names must be unique within your subscription.
61+
Allowed characters for gallery name are uppercase or lowercase letters, digits, dots, and periods. The gallery name can't contain dashes. Gallery names must be unique within your subscription.
6262

6363
Create a gallery using [az sig create](/cli/azure/sig#az-sig-create). The following example creates a resource group named gallery named *myGalleryRG* in *East US*, and a gallery named *myGallery*.
6464

@@ -85,7 +85,7 @@ Copy the ID of your VM to use later.
8585

8686
## Create an image definition
8787

88-
Image definitions create a logical grouping for images. They are used to manage information about the image versions that are created within them.
88+
Image definitions create a logical grouping for images. They're used to manage information about the image versions that are created within them.
8989

9090
Image definition names can be made up of uppercase or lowercase letters, digits, dots, dashes, and periods.
9191

@@ -115,7 +115,7 @@ Create an image version from the VM using [az sig image-version create](/cli/azu
115115

116116
Allowed characters for image version are numbers and periods. Numbers must be within the range of a 32-bit integer. Format: *MajorVersion*.*MinorVersion*.*Patch*.
117117

118-
In this example, the version of our image is *1.0.0* and we are going to create 2 replicas in the *West Central US* region, 1 replica in the *South Central US* region and 1 replica in the *East US 2* region using zone-redundant storage. The replication regions must include the region the source VM is located.
118+
In this example, the version of our image is *1.0.0* and we're going to create two replicas in the *West Central US* region, one replica in the *South Central US* region and one replica in the *East US 2* region using zone-redundant storage. The replication regions must include the region the source VM is located.
119119

120120
Replace the value of `--managed-image` in this example with the ID of your VM from the previous step.
121121

@@ -139,11 +139,11 @@ az sig image-version create \
139139

140140
## Create the VM
141141

142-
Create the VM using [az vm create](/cli/azure/vm#az-vm-create) using the --specialized parameter to indicate the image is a specialized image.
142+
Create the VM using [az vm create](/cli/azure/vm#az-vm-create) using the `--specialized` parameter to indicate the image is a specialized image.
143143

144144
Use the image definition ID for `--image` to create the VM from the latest version of the image that is available. You can also create the VM from a specific version by supplying the image version ID for `--image`.
145145

146-
In this example, we are creating a VM from the latest version of the *myImageDefinition* image.
146+
In this example, we're creating a VM from the latest version of the *myImageDefinition* image.
147147

148148
```azurecli
149149
az group create --name myResourceGroup --location eastus
@@ -179,7 +179,7 @@ For more information about how to share resources using Azure RBAC, see [Add or
179179

180180
## Azure Image Builder
181181

182-
Azure also offers a service, built on Packer, [Azure VM Image Builder](../image-builder-overview.md). Simply describe your customizations in a template, and it will handle the image creation.
182+
Azure also offers a service, built on Packer, [Azure VM Image Builder](../image-builder-overview.md). Describe your customizations in a template, and it will handle the image creation.
183183

184184
## Next steps
185185

0 commit comments

Comments
 (0)