0
0

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 3 years have passed since last update.

Azure Virtual Machinesのクォータ (コア数上限)をAzure CLIで確認する方法

Last updated at Posted at 2020-05-21

はじめに

Azureのサブスクリプションにはクォータという様々なリソースの制限があります(最初からVMを1万個立てよう!とかはできない)。
Azure サブスクリプションとサービスの制限、クォータ、制約

その制限の確認方法 (どのVMシリーズが何CPU分使えるか等)を確認する方法を調べると、よくPowerShellコマンドが出てくるのですが、Azure CLIを使った確認がしたかったので方法をメモします。

PowerShellでの確認方法

Get-AzureRmVMUsage -Location "Japan East"

Azure CLIでの確認方法

$ az vm list-usage --location japaneast  --output table

※locationはJapan Eastでもjapaneast と書いても大丈夫です。

結果

Azure VMのクォータが確認できました!
image.png

Next steps

制限の引き上げ方法については以下を参考に。
Azure Virtual Machinesのクォータ (コア数上限) の引き上げ

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?