Im following the Microsoft docs to deploy templates into azure with runbooks , however I cant see where the parameters come from for the script under the heading : Create the PowerShell runbook script
The full guide is here https://learn.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
)