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

25
pages.ko/common/az-tag.md Normal file
View File

@@ -0,0 +1,25 @@
# az tag
> 리소스에 대한 태그를 관리.
> `azure-cli`의 일부 (`az`라고도 함).
> 더 많은 정보: <https://learn.microsoft.com/cli/azure/tag>.
- 태그 값 생성:
`az tag add-value --name {{태그_이름}} --value {{태그_값}}`
- 구독에서 태그를 생성:
`az tag create --name {{태그_이름}}`
- 구독에서 태그를 삭제:
`az tag delete --name {{태그_이름}}`
- 구독의 모든 태그 나열:
`az tag list --resource-id /subscriptions/{{구독_아이디}}`
- 특정 태그 이름에 대한 태그 값 삭제:
`az tag remove-value --name {{태그_이름}} --value {{태그_값}}`