Skip to content

Commit b52f097

Browse files
committed
Tweaks
1 parent 0357001 commit b52f097

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

AKS-Hybrid/create-clusters-bicep.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Before you begin, make sure you have the following prerequisites:
2525

2626
1. Get the following details from your on-premises infrastructure administrator:
2727

28-
- Azure subscription ID: the Azure subscription ID in which Azure Stack HCI is used for deployment and registration.
28+
- Azure subscription ID: the Azure subscription ID that uses Azure Stack HCI for deployment and registration.
2929
- Custom location name or ID: the Azure Resource Manager ID of the custom location. The custom location is configured during the Azure Stack HCI cluster deployment. Your infrastructure admin should give you the Resource Manager ID of the custom location. This parameter is required in order to create Kubernetes clusters. You can also get the Resource Manager ID using `az customlocation show --name "<custom location name>" --resource-group <azure resource group> --query "id" -o tsv`, if the infrastructure admin provides a custom location name and resource group name.
3030
- Logic network name or ID: the Azure Resource Manager ID of the Azure Stack HCI logical network that was created following these steps. Your admin should give you the ID of the logical network. This parameter is required in order to create Kubernetes clusters. You can also get the Azure Resource Manager ID using `az stack-hci-vm network lnet show --name "<lnet name>" --resource-group <azure resource group> --query "id" -o tsv` if you know the resource group in which the logical network was created.
3131

@@ -42,8 +42,11 @@ To create an SSH key pair (same as Azure AKS), use the following procedure:
4242
```azurecli
4343
# Create an SSH key pair using Azure CLI
4444
az sshkey create --name "mySSHKey" --resource-group "myResourceGroup"
45+
```
46+
47+
Or, create an SSH key pair using ssh-keygen:
4548

46-
# Or, create an SSH key pair using ssh-keygen
49+
```bash
4750
ssh-keygen -t rsa -b 4096
4851
```
4952

0 commit comments

Comments
 (0)