我遵循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
)
答案 0 :(得分:1)
但是我无法在标题下看到脚本参数的来源。
如果我们在尝试运行Runbook时遵循docs和Import and publish the runbook into your Azure Automation account,,那么我们需要输入所需的参数。