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.

Azure VM 上のスクリプトファイルを Rest API で実行する

Posted at

Azure Rest API で、Azure Virtual Machine 上の C:\test.ps1 というスクリプトファイルを実行するためのメモ。

API

[URI] で対象の VM を指定する。

POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommand?api-version=2022-08-01

[本文] で実行するコマンドや .ps1 ファイルを指定する。ここでは test.ps1。

{
  "commandId": "RunPowerShellScript",
  "script": [
    "powershell C:\\test.ps1"
  ]
}

Logic Apps でやろうとすると以下。

image.png

認証

  • マネージド ID が簡単。
    ここでは、VM 側の権限を Logic Apps に付与する。
    まず Logic Apps 側にロールの割り当てができるように設定する。

[設定 - ID]、[システム割り当て済み] タブにて [状態] を “オン” にして保存。

マネージド ID の有効化

[ロール] について、ここでは [仮想マシン共同作成者] ロールを使う。

仕上がり

image.png

以上です~

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?