1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-08 10:55:40 +02:00
tldr/pages.ko/common/az-storage.md
2024-09-21 22:14:43 +05:30

25 lines
966 B
Markdown

# az storage
> Azure Cloud Storage 리소스를 관리.
> `azure-cli`의 일부 (`az`라고도 함).
> 더 많은 정보: <https://learn.microsoft.com/cli/azure/storage>.
- 위치([l]ocation)를 지정하는 스토리지 계정을 생성:
`az storage account create --resource-group {{그룹_이름}} --name {{계정_이름}} -l {{위치}} --sku {{account_sku}}`
- 리소스 그룹의 모든 스토리지 게정을 나열:
`az storage account list --resource-group {{그룹_이름}}`
- 스토리지 계정에 대한 액세스 키를 나열:
`az storage account keys list --resource-group {{그룹_이름}} --name {{계정_이름}}`
- 스토리지 계정 삭제:
`az storage account delete --resource-group {{그룹_이름}} --name {{계정_이름}}`
- 스토리지 계정에 대한 최소 TLS 버전 설정을 업데이트:
`az storage account update --min-tls-version {{TLS1_0|TLS1_1|TLS1_2}} --resource-group {{그룹_이름}} --name {{계정_이름}}`