We have created a AKS cluster using az aks create .... --generate-ssh-keys ....
.
How/where can we find the SSH keys that were generated, so we can use them?
Thankx
We have created a AKS cluster using az aks create .... --generate-ssh-keys ....
.
How/where can we find the SSH keys that were generated, so we can use them?
Thankx
You can find the SSH keys from the output of this command
az aks create .... --generate-ssh-keys
.After you run this command, you can find your ssh key in that output.
You can find it in this path:
If you are use Linux, you can find it here:
You can use that SSH key to login AKS agent:
ssh [email protected].* -i ~/.ssh/id_rsa