通过Python在Azure上部署虚拟机

时间:2019-06-09 08:09:33

标签: python azure

我想通过Python在Azure上部署VM。我遵循了该准则。 https://azure.microsoft.com/nl-nl/resources/samples/virtual-machines-python-manage/步骤1-5已完成。

我陷入了第6步。

6. Fill in and export these environment variables into your current shell.

   export AZURE_TENANT_ID={your tenant id}
   export AZURE_CLIENT_ID={your client id}
   export AZURE_CLIENT_SECRET={your client secret}

我使用的是Windows计算机,目前尚不清楚我需要做什么。这将是一件非常简单的事情,但我无法弄清楚:-(

1 个答案:

答案 0 :(得分:0)

要在Windows中设置环境变量,而不是:

export AZURE_TENANT_ID={your tenant id}

使用

set AZURE_TENANT_ID={your tenant id}