From 10fc844c6ffdc601be88aab353fa2f1065cc4f91 Mon Sep 17 00:00:00 2001 From: Simon Dahlbacka Date: Sat, 1 Oct 2022 22:11:32 +0300 Subject: [PATCH] add page: az sshkey (#8603) --- pages/common/az-sshkey.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/az-sshkey.md diff --git a/pages/common/az-sshkey.md b/pages/common/az-sshkey.md new file mode 100644 index 000000000..d049ee454 --- /dev/null +++ b/pages/common/az-sshkey.md @@ -0,0 +1,21 @@ +# az sshkey + +> Manage ssh public key with vm. +> Part of `azure-cli`. +> More information: . + +- Create a new SSH key: + +`az sshkey create --name {{name}} --resource-group {{resource_group}}` + +- Upload an existing SSH key: + +`az sshkey create --name {{name}} --resource-group {{resource_group}} --public-key "{{@path/to/key.pub}}"` + +- List all SSH public keys: + +`az sshkey list` + +- Show information about an SSH public key: + +`az sshkey show --name {{name}} --resource-group {{resource_group}}`