AZ-104-03c
[ AZ-104-03c ] PowerShell로 Azure 리소스 관리
Azure PowerShell을 사용하여 리소스 그룹 및 Azure 관리 디스크 만들기 $location = (Get-AzResourceGroup -Name az104-03b-rg1).Location $rgName = 'az104-03c-rg1' New-AzResourceGroup -Name $rgName -Location $location Azure PowerShell → 이전 랩에서 만든 az104-03b-rg1 리소스 그룹과 동일한 지역에 있는 리소스 그룹 생성 → Get-AzResourceGroup -Name $rgName 새로 만든 리소스 그룹 속성 검색 → $diskConfig = New-AzDiskConfig ` -Location $location ` -CreateOption Empty ` ..