You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -44,24 +44,24 @@ To deploy an ARM template, you need write access on the resources you're deployi
44
44
45
45
## Step 2: Create an SSH key pair
46
46
47
-
Create an SSH key pair in Azure and store the private key file for troubleshooting and log collection purposes. For detailed instructions, see **Create and manage SSH keys with the [Azure CLI](/azure/virtual-machines/ssh-keys-azure-cli) or in the [Azure Portal](/azure/virtual-machines/ssh-keys-portal)**.
47
+
Create an SSH key pair in Azure and store the private key file for troubleshooting and log collection purposes. For detailed instructions, see [Create and store SSH keys with the Azure CLI](/azure/virtual-machines/ssh-keys-azure-cli), or in the [Azure portal](/azure/virtual-machines/ssh-keys-portal).
48
48
49
-
1.[Open a Cloud Shell session](https://shell.azure.com/)in your web browser or launch a terminal on your local machine.
50
-
1. Create an SSH key pair using the [az sshkey create](/cli/azure/sshkey#az-sshkey-create)command:
49
+
1.[Open a Cloud Shell session](https://shell.azure.com/)in your web browser or launch a terminal on your local machine.
50
+
1. Create an SSH key pair using the [az sshkey create](/cli/azure/sshkey#az-sshkey-create)command:
51
51
52
52
```azurecli
53
53
az sshkey create --name "mySSHKey" --resource-group $<resource_group_name>
54
54
```
55
55
56
-
or the`ssh-keygen`command
56
+
or, use the`ssh-keygen`command:
57
57
58
58
```azurecli
59
59
ssh-keygen -t rsa -b 4096
60
60
```
61
61
62
62
1. Retrieve the value of your public key from Azure or from your local machine under **/.ssh/id_rsa.pub**.
63
63
64
-
For additional options, you can either follow [Configure SSH keys for an AKS cluster](/azure/aks/aksarc/configure-ssh-keys) to create SSH keys or use [Restrict SSH access](/azure/aks/aksarc/restrict-ssh-access) during cluster creation. To access nodes afterward, see [Connect to Windows or Linux worker nodes with SSH](/azure/aks/aksarc/ssh-connect-to-windows-and-linux-worker-nodes).
64
+
For more options, you can either follow [Configure SSH keys for an AKS cluster](/azure/aks/aksarc/configure-ssh-keys) to create SSH keys, or use [Restrict SSH access](/azure/aks/aksarc/restrict-ssh-access) during cluster creation. To access nodes afterward, see [Connect to Windows or Linux worker nodes with SSH](/azure/aks/aksarc/ssh-connect-to-windows-and-linux-worker-nodes).
0 commit comments