0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows に Azure CLI をインストールしてリソースグループを作成するところまで

Last updated at Posted at 2019-03-23

#はじめに
Azure CLI を使い始める手順です。しばらく使っていないとすぐに忘れるので、備忘録として。
Azure PowerShell 版はこちら

#インストール
ここから Azure CLI のインストーラーをダウンロードして実行します。設定等は特になし。
インストールが完了したら PowerShell を開いて以下のコマンドを実行してバージョンを確認します。

> az --version
azure-cli 2.0.60
...

【参考】Windows での Azure CLI のインストール

#ログイン
以下のコマンドを実行するとブラウザで Microsoft アカウントのログイン画面が開くので、Azure 管理用のアカウントでログインします。

> az login

ログインに成功すると PowerShell 上にサブスクリプションの一覧が表示されます。

【参考】Azure CLI を使用してサインインする

#サブスクリプション選択
次のコマンドでカレントのサブスクリプションを確認します。

> az account show --output table

次のコマンドを実行して、選択するサブスクリプションの SubscriptionId を確認します。

> az account list --output table

次のコマンドを実行することで、カレントのサブスクリプションを切り替えます。

> az account set --subscription <SubscriptionId> 

再度次のコマンドを実行し、選択したサブスクリプションが表示されることを確認します。

> az account show --output table

【参考】複数の Azure サブスクリプションの使用

#リソースグループ作成

次のコマンドを実行してロケーションの一覧を確認します。

> az account list-locations --output table

DisplayName          Latitude    Longitude    Name
-------------------  ----------  -----------  ------------------
East Asia            22.267      114.188      eastasia
Southeast Asia       1.283       103.833      southeastasia
Central US           41.5908     -93.6208     centralus
East US              37.3719     -79.8164     eastus
East US 2            36.6681     -78.3889     eastus2
West US              37.783      -122.417     westus
North Central US     41.8819     -87.6278     northcentralus
South Central US     29.4167     -98.5        southcentralus
North Europe         53.3478     -6.2597      northeurope
West Europe          52.3667     4.9          westeurope
Japan West           34.6939     135.5022     japanwest
Japan East           35.68       139.77       japaneast
Brazil South         -23.55      -46.633      brazilsouth
Australia East       -33.86      151.2094     australiaeast
Australia Southeast  -37.8136    144.9631     australiasoutheast
South India          12.9822     80.1636      southindia
Central India        18.5822     73.9197      centralindia
West India           19.088      72.868       westindia
Canada Central       43.653      -79.383      canadacentral
Canada East          46.817      -71.217      canadaeast
UK South             50.941      -0.799       uksouth
UK West              53.427      -3.084       ukwest
West Central US      40.890      -110.234     westcentralus
West US 2            47.233      -119.852     westus2
Korea Central        37.5665     126.9780     koreacentral
Korea South          35.1796     129.0756     koreasouth
France Central       46.3772     2.3730       francecentral
France South         43.8345     2.1972       francesouth
Australia Central    -35.3075    149.1244     australiacentral
Australia Central 2  -35.3075    149.1244     australiacentral2
South Africa North   -25.731340  28.218370    southafricanorth
South Africa West    -34.075691  18.843266    southafricawest

次のコマンドを実行してリソースグループを作成します。

> az group create --name <ResourceGroupName> --location <LocaltionName>

次のコマンドを実行してリソースグループの一覧を確認します。

> az group list --output table

【参考】az group

#まとめ
リソースグループまでできたので、あとはよしなにリソース作っていきましょう。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?