Skip to content

Commit 101b764

Browse files
committed
made acrolinx score corrections
1 parent 1fa678b commit 101b764

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/virtual-machines/linux/quick-create-cli.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: 'Quickstart: Use the Azure CLI to create a Linux VM'
3-
description: Create a Linux virtual machine using the Azure CLI
2+
title: 'Quickstart: Use the Azure CLI to create a Linux Virtual Machine'
3+
description: Create a Linux virtual machine using the Azure CLI.
44
author: chasecrum
55
ms.service: virtual-machines
66
ms.collection: linux
@@ -10,7 +10,7 @@ ms.author: chasecrum
1010
ms.custom: mvc, devx-track-azurecli, mode-api, innovation-engine, linux-related-content
1111
---
1212

13-
# Create a Linux VM on Azure
13+
# Create a Linux virtual machine on Azure
1414

1515
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/?Microsoft_Azure_CloudNative_clientoptimizations=false&feature.canmodifyextensions=true#view/Microsoft_Azure_CloudNative/SubscriptionSelectionPage.ReactView/tutorialKey/CreateLinuxVMAndSSH)
1616

@@ -27,9 +27,9 @@ export MY_USERNAME=azureuser
2727
export MY_VM_IMAGE="Canonical:0001-com-ubuntu-minimal-jammy:minimal-22_04-lts-gen2:latest"
2828
```
2929

30-
## Login to Azure using the CLI
30+
## Log in to Azure using the CLI
3131

32-
In order to run commands in Azure using the CLI you'll need to login first. This is done using the `az login` command.
32+
In order to run commands in Azure using the CLI, you need to log in first. This is done using the `az login` command.
3333

3434
## Create a resource group
3535

@@ -58,7 +58,7 @@ Results:
5858

5959
## Create the virtual machine
6060

61-
To create a VM in this resource group we need to use the `vm create` command. In the code example below, we have provided the `--generate-ssh-keys` flag, which will cause the CLI to look for an available ssh key in `~/.ssh`. If one is found, it will be used. If not, one will be generated and stored in `~/.ssh`. We also provide the `--public-ip-sku Standard` flag to ensure that the machine is accessible via a public IP address. Finally, we deploy the latest `Ubuntu 22.04` image.
61+
To create a VM in this resource group, we need to use the `vm create` command. In the following code example, we provided the `--generate-ssh-keys` flag, which causes the CLI to look for an available ssh key in `~/.ssh`. If one is found, it is used. If not, one is generated and stored in `~/.ssh`. We also provide the `--public-ip-sku Standard` flag to ensure that the machine is accessible via a public IP address. Finally, we deploy the latest `Ubuntu 22.04` image.
6262

6363
All other values are configured using environment variables.
6464

@@ -90,9 +90,9 @@ Results:
9090
}
9191
```
9292

93-
## Enable Azure AD login for a Linux virtual machine in Azure
93+
## Enable Azure AD Login for a Linux virtual machine in Azure
9494

95-
The following code example deploys a Linux VM and then installs the extension to enable an Azure AD login for a Linux VM. VM extensions are small applications that provide post-deployment configuration and automation tasks on Azure virtual machines.
95+
The following code example deploys a Linux VM and then installs the extension to enable an Azure AD Login for a Linux VM. VM extensions are small applications that provide post-deployment configuration and automation tasks on Azure virtual machines.
9696

9797
```bash
9898
az vm extension set \
@@ -113,15 +113,15 @@ export IP_ADDRESS=$(az vm show --show-details --resource-group $MY_RESOURCE_GROU
113113
## SSH into the VM
114114

115115
<!--## Export the SSH configuration for use with SSH clients that support OpenSSH & SSH into the VM.
116-
Login to Azure Linux VMs with Azure AD supports exporting the OpenSSH certificate and configuration. That means you can use any SSH clients that support OpenSSH-based certificates to sign in through Azure AD. The following example exports the configuration for all IP addresses assigned to the VM:-->
116+
Log in to Azure Linux VMs with Azure AD supports exporting the OpenSSH certificate and configuration. That means you can use any SSH clients that support OpenSSH-based certificates to sign in through Azure AD. The following example exports the configuration for all IP addresses assigned to the VM:-->
117117

118118
<!--
119119
```bash
120120
yes | az ssh config --file ~/.ssh/config --name $MY_VM_NAME --resource-group $MY_RESOURCE_GROUP_NAME
121121
```
122122
-->
123123

124-
You can now SSH into the VM by running the output of the following command in your ssh client of choice
124+
You can now SSH into the VM by running the output of the following command in your ssh client of choice:
125125

126126
```bash
127127
ssh -o StrictHostKeyChecking=no $MY_USERNAME@$IP_ADDRESS

0 commit comments

Comments
 (0)