You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Review [Links in graphical authoring](automation-graphical-authoring-intro.md#links-and-workflow) to understand how to direct and control the flow of logic in your runbooks.
163
-
163
+
* For a PowerShell cmdlet reference, see [Az.Automation](https://docs.microsoft.com/powershell/module/az.automation/?view=azps-3.7.0#automation
164
+
).
164
165
- To learn more about Azure Automation's use of PowerShell modules and best practices for creating your own PowerShell modules to work as Integration Modules within Azure Automation, see [Integration Modules](automation-integration-modules.md).
Copy file name to clipboardExpand all lines: articles/automation/automation-create-alert-triggered-runbook.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,3 +192,5 @@ Alerts use action groups, which are collections of actions that are triggered by
192
192
* For details about different ways to start a runbook, see [Starting a runbook](automation-starting-a-runbook.md).
193
193
* To learn how to create an activity log alert, see [Create activity log alerts](../azure-monitor/platform/activity-log-alerts.md?toc=%2fazure%2fautomation%2ftoc.json).
194
194
* To learn how to create a near real-time alert, see [Create an alert rule in the Azure portal](../azure-monitor/platform/alerts-metric.md?toc=/azure/azure-monitor/toc.json).
195
+
* For a PowerShell cmdlet reference, see [Az.Automation](https://docs.microsoft.com/powershell/module/az.automation/?view=azps-3.7.0#automation
Copy file name to clipboardExpand all lines: articles/automation/automation-deploy-template-runbook.md
+29-29Lines changed: 29 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,14 +20,17 @@ templates in a central, secure location such as Azure Storage.
20
20
In this article, we create a PowerShell runbook that uses a Resource Manager template stored in
21
21
[Azure Storage](../storage/common/storage-introduction.md) to deploy a new Azure Storage account.
22
22
23
+
>[!NOTE]
24
+
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version using [How to update Azure PowerShell modules in Azure Automation](automation-update-azure-modules.md).
25
+
23
26
## Prerequisites
24
27
25
28
To complete this tutorial, you need the following items:
26
29
27
30
* Azure subscription. If you don't have one yet, you can [activate your MSDN subscriber benefits](https://azure.microsoft.com/pricing/member-offers/msdn-benefits-details/) or [sign up for a free account](https://azure.microsoft.com/free/).
28
31
*[Automation account](automation-sec-configure-azure-runas-account.md) to hold the runbook and authenticate to Azure resources. This account must have permission to start and stop the virtual machine.
29
32
*[Azure Storage account](../storage/common/storage-create-storage-account.md) in which to store the Resource Manager template
30
-
* Azure Powershell installed on a local machine. See [Install and configure Azure Powershell](https://docs.microsoft.com/powershell/azure/azurerm/install-azurerm-ps) for information about how to get Azure PowerShell.
33
+
* Azure PowerShell installed on a local machine. See [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0) for information about how to get Azure PowerShell.
31
34
32
35
## Create the Resource Manager template
33
36
@@ -87,23 +90,23 @@ In a text editor, copy the following text:
87
90
}
88
91
```
89
92
90
-
Save the file locally as `TemplateTest.json`.
93
+
Save the file locally as **TemplateTest.json**.
91
94
92
95
## Save the Resource Manager template in Azure Storage
93
96
94
-
Now we use PowerShell to create an Azure Storage file share and upload the `TemplateTest.json` file.
97
+
Now we use PowerShell to create an Azure Storage file share and upload the **TemplateTest.json** file.
95
98
For instructions on how to create a file share and upload a file in the Azure portal, see
96
99
[Get started with Azure File storage on Windows](../storage/files/storage-dotnet-how-to-use-files.md).
97
100
98
101
Launch PowerShell on your local machine, and run the following commands to create a file share
99
102
and upload the Resource Manager template to that file share.
0 commit comments