通过Azure Runbook部署ARM模板

时间:2018-03-13 14:31:52

标签: azure azure-runbook

我遵循Microsoft文档使用Runbook将模板部署到azure中,但是我无法在标题下看到脚本的参数来源: 创建PowerShell Runbook脚本

完整指南在这里https://docs.microsoft.com/en-us/azure/automation/automation-deploy-template-runbook

param (
[Parameter(Mandatory=$true)]
[string]
$ResourceGroupName,

[Parameter(Mandatory=$true)]
[string]
$StorageAccountName,

[Parameter(Mandatory=$true)]
[string]
$StorageAccountKey,

[Parameter(Mandatory=$true)]
[string]
$StorageFileName

1 个答案:

答案 0 :(得分:1)

  

但是我无法在标题下看到脚本参数的来源。

如果我们在尝试运行Runbook时遵循docsImport and publish the runbook into your Azure Automation account,那么我们需要输入所需的参数

enter image description here

测试结果: enter image description here