【Azure 环境】调用Azure RunCommand 的REST API 设置虚拟机的环境变量(SetEnvironmentVariable)
问题描述
在Azure VM的门户页面中,可以通过 RunPowerShellScript来执行PowerShell脚本,如下图:
那么,如何使用REST API 在Azure VM中执行PowerShell脚本呢? 如设置一个环境变量 SetEnvironmentVariable
问题解答
通过在Azure 门户,打开开发者模式抓取到门户上执行 PowerShell命令使用的REST API为PUT请求,请求的URL为:
https://management.chinacloudapi.cn/ subscriptions/<SUB_ID>/ resourceGroups/<RESOURCE_GROUP_NAME>/ providers/Microsoft.Compute/ virtualMachines/<VM_NAME>/ runCommand?api-version=2018-04-01
请求的消息体(Request Body)为:
{
"commandId": "RunPowerShellScript",
"script": [
"[Environment]::SetEnvironmentVariable('TestEnvValue', 'VMNAME001')"
]
}
只需要修改以上高亮部分的内容,即可完成环境变量的修改。
参考资料
Virtual Machine Run Commands - Create Or Update : https://docs.microsoft.com/zh-CN/rest/api/compute/virtual-machine-run-commands/create-or-update?tabs=HTTP
当在复杂的环境中面临问题,格物之道需:浊而静之徐清,安以动之徐生。 云中,恰是如此!