我按照 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
)