1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 12:55:32 +02:00
tldr/pages.ko/common/az-appconfig.md
HoJeong Im 59e06215ae
az-*: add Korean translation (#13708)
az-account, az-acr, az-advisor, az-aks, az-apim, az-appconfig, az-bicep, az-config, az-devops, az-feedback.md: add Korean translation
2024-09-15 23:13:42 +05:30

850 B

az appconfig

Azure에서 앱 구성을 관리. azure-cli의 일부 (az라고도 함). 더 많은 정보: https://learn.microsoft.com/cli/azure/appconfig.

  • 앱 구성 만들기:

az appconfig create --name {{이름}} --resource-group {{그룹_이름}} --location {{위치}}

  • 특정 앱 구성 삭제:

az appconfig delete --resource-group {{리소스그룹_이름}} --name {{앱구성파일_이름}}

  • 현재 구독 아래의 모든 앱 구성을 나열:

az appconfig list

  • 특정 리소스 그룹 아래 모든 앱 구성을 나열:

az appconfig list --resource-group {{리소스그룹_이름}}

  • 앱 구성의 속성 표시:

az appconfig show --name {{앱구성파일_이름}}

  • 특정 앱 구성 업데이트:

az appconfig update --resource-group {{리소스그룹_이름}} --name {{앱구성파일_이름}}