az-*: add Korean translation (#13714)

This commit is contained in:
HoJeong Im
2024-09-22 01:44:43 +09:00
committed by GitHub
parent 7f1ecba98c
commit c99a78991d
25 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# az sshkey
> 가상 머신으로 SSH 공개 키를 관리.
> `azure-cli`의 일부 (`az`라고도 함).
> 더 많은 정보: <https://learn.microsoft.com/cli/azure/sshkey>.
- 새로운 SSH 키를 생성:
`az sshkey create --name {{이름}} --resource-group {{리소스_그룹}}`
- 기존 SSH 키 업로드:
`az sshkey create --name {{이름}} --resource-group {{리소스_그룹}} --public-key "{{@path/to/key.pub}}"`
- 모든 SSH 공개 키를 나열:
`az sshkey list`
- SSH 공개 키를 대한 정보 표시:
`az sshkey show --name {{이름}} --resource-group {{리소스_그룹}}`