Skip to content

Commit 564ff4c

Browse files
authored
Update date and improve SSH key instructions
1 parent af588ae commit 564ff4c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

AKS-Arc/resource-manager-quickstart.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy a Kubernetes (AKS) cluster using an Azure Resource Manager templat
33
description: Learn how to deploy a Kubernetes cluster in AKS enabled by Azure Arc using an Azure Resource Manager template.
44
ms.topic: quickstart-arm
55
ms.custom: devx-track-arm-template, devx-track-azurecli
6-
ms.date: 12/18/2024
6+
ms.date: 02/26/2025
77
author: sethmanheim
88
ms.author: sethm
99
ms.lastreviewed: 01/31/2024
@@ -44,24 +44,24 @@ To deploy an ARM template, you need write access on the resources you're deployi
4444

4545
## Step 2: Create an SSH key pair
4646

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).
4848

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:
5151

5252
```azurecli
5353
az sshkey create --name "mySSHKey" --resource-group $<resource_group_name>
5454
```
5555

56-
or the`ssh-keygen`command
56+
or, use the `ssh-keygen` command:
5757

5858
```azurecli
5959
ssh-keygen -t rsa -b 4096
6060
```
6161

6262
1. Retrieve the value of your public key from Azure or from your local machine under **/.ssh/id_rsa.pub**.
6363

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).
6565

6666

6767
## Step 3: Review the template

0 commit comments

Comments
 (0)