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 1 year has passed since last update.

【AzureCli】割り当て済み状態のまま停止中のVMを割り当て解除する

Last updated at Posted at 2022-01-07

普通にGUIから実施すればいいんですが、AzureCliでやる機会があったので備忘録に。
Azureの仮想マシンには「割り当て状態」と「割り当て解除」状態が存在し、
仮想マシンが停止していても、「割り当て状態」のままだと課金が発生します。
これをAzureCliから割り当て解除実施をします。

前提

AzureCliを導入して、az loginまではしておいてね。

仮想マシンの電源状態を確認する

az vm list --subscription [サブスクリプション名] --show-details --query "[].{Name:name, Id:id, PowerState:powerState}" --output table

表示 状態
VM running 起動中
VM stopped 停止中(割り当て状態)
VM deallocated 停止中(割り当て解除)

--show-detailsを指定しないと電源状態(PowerState)が確認できないので注意
割り当て解除したいVMのIdを確認する

割り当て解除する

az vm deallocate --ids [仮想マシンのId]

これで割り当て解除状態になる

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?