1
私はAzure Automation用のARMテンプレートを作成しており、カスタムモジュールをアップロードしたいと考えています。下の例では、パブリックモジュールをアップロードして、モジュールのURLを与えているのを見ました。どのように私はカスタムモジュールを取るようにこれを変更するのですか?カスタムテンプレートをARMテンプレートに追加する方法
"resources": [
{
"name": "[concat(parameters('automationAccountName'), '/', variables('dscModules').xNetworking.ModuleName)]",
"type": "microsoft.automation/automationAccounts/Modules",
"apiVersion": "[variables('automationApiVersion')]",
"tags": {},
"dependsOn": [
"[concat('Microsoft.Automation/automationAccounts/', parameters('automationAccountName'))]"
],
"properties": {
"contentLink": {
"uri": "[variables('dscModules').xNetworking.ModuleUri]"
}
}
}