[azure-cli] create resource group

Seokhee Hwang
wrapskirt
Published in
2 min readFeb 15, 2019

리소스 그룹 생성 명령어

az group create -l koreaCentral -n node-test-linux
  • -l or --location : location (국가별 서버 위치)
  • -n or --name : name (리소스 그룹명)

국가 별 서버 위치 리스트 확인 명령어

az account list-locations[
{
"displayName": "Korea Central",
"id": "/subscriptions/0848800a-ec09-41b8-a66d-3a5ba1d56e18/locations/koreacentral",
"latitude": "37.5665",
"longitude": "126.9780",
"name": "koreacentral",
"subscriptionId": null
},
{
"displayName": "Korea South",
"id": "/subscriptions/0848800a-ec09-41b8-a66d-3a5ba1d56e18/locations/koreasouth",
"latitude": "35.1796",
"longitude": "129.0756",
"name": "koreasouth",
"subscriptionId": null
}
]

CLI(Command Line Interface)란?

명령 줄 인터페이스(CLI, Command line interface) 또는 명령어 인터페이스는 텍스트 터미널을 통해 사용자와 컴퓨터가 상호 작용하는 방식을 뜻한다. 즉, 작업 명령은 사용자가 컴퓨터 키보드 등을 통해 문자열의 형태로 입력하며, 컴퓨터로부터의 출력 역시 문자열의 형태로 주어진다. ( — 위키백과 — )

--

--