Skip to content

Commit 806cede

Browse files
authored
Update date and improve SSH key instructions
1 parent ebed695 commit 806cede

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

AKS-Arc/create-clusters-terraform.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to create Kubernetes clusters using Terraform.
44
author: sethmanheim
55
ms.author: sethm
66
ms.topic: how-to
7-
ms.date: 02/10/2025
7+
ms.date: 02/26/2025
88

99
---
1010

@@ -32,24 +32,24 @@ Before you begin, make sure you have the following prerequisites:
3232

3333
## Create an SSH key pair
3434

35-
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)**.
35+
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).
3636

3737
1. [Open a Cloud Shell session](https://shell.azure.com/) in your web browser or launch a terminal on your local machine.
38-
1. Create an SSH key pair using the [az sshkey create](/cli/azure/sshkey#az-sshkey-create)command:
38+
1. Create an SSH key pair using the [az sshkey create](/cli/azure/sshkey#az-sshkey-create) command:
3939

4040
```azurecli
4141
az sshkey create --name "mySSHKey" --resource-group $<resource_group_name>
4242
```
4343

44-
or the`ssh-keygen`command
44+
or, use the `ssh-keygen` command:
4545

4646
```azurecli
4747
ssh-keygen -t rsa -b 4096
4848
```
4949

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

52-
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).
52+
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).
5353

5454
## Sign in to Azure
5555

0 commit comments

Comments
 (0)