Azure Stack Hub에서 명령줄을 사용하여 템플릿 배포
Azure CLI(명령줄 인터페이스)를 사용하여 Azure Stack Hub에서 Azure Resource Manager 템플릿을 배포할 수 있습니다. Azure Resource Manager 템플릿은 조정된 단일 작업으로 앱에 대한 리소스를 배포하고 설정합니다.
템플릿 배포
-
AzureStack-QuickStart-Templates 리포지토리를 찾아 101-create-storage-account 템플릿을 찾습니다. 템플릿(
azuredeploy.json
) 및 매개 변수 파일(azuredeploy.parameters.json
)을 로컬 드라이브의 위치에 저장합니다.C:\templates\
- 파일을 다운로드한 폴더로 이동합니다.
- Azure CLI를 사용하여 Azure Stack Hub를 설치하고 연결합니다.
- 다음 명령에서 지역 및 위치를 업데이트합니다. ASDK를 사용하는 경우 위치 매개 변수에 를 사용합니다
local
. 템플릿을 배포하는 방법은 다음과 같습니다.az group create --name testDeploy --location local az deployment group create --resource-group testDeploy --template-file ./azuredeploy.json --parameters ./azuredeploy.parameters.json
이 명령은 Azure Stack Hub instance 리소스 그룹 testDeploy에 템플릿을 배포합니다.
템플릿 배포 유효성 검사
리소스 그룹 및 스토리지 계정을 검토하려면 다음 CLI 명령을 실행합니다.
az group list
az storage account list
다음 단계
PowerShell을 사용하여 템플릿을 배포하는 방법을 알아봅니다.