본문 바로가기
카테고리 없음

powershell로 azure 접근 하기(az cli 사용 X)

by Rainbound-IT 2024. 12. 24.
반응형

1. Azure PowerShell 설치

 

powershell 일정버전 이상은 설치 안해도 됨

Install-Module -Name Az -AllowClobber -Force -Scope CurrentUser

2. Azure PowerShell 로그인

Connect-AzAccount
 

3. Azure 인스턴스 목록 확인

Get-AzVM

4. 특정 리소스 그룹의 VM 목록 확인

Get-AzVM -ResourceGroupName "yourResourceGroupName"
 

 

 

 

https://learn.microsoft.com/en-us/powershell/azure/install-azure-powershell?view=azps-13.0.0

 

How to install Azure PowerShell

Azure PowerShell is available to install for Windows, Linux, and macOS. It can also be run from Azure Cloud Shell and in a Docker container.

learn.microsoft.com

 

반응형

댓글