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
Copy file name to clipboardExpand all lines: articles/automation/automation-create-account-template.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Use Azure Resource Manager templates to create Automation account | Microsoft Docs
2
+
title: Use Azure Resource Manager templates to create an Automation account | Microsoft Docs
3
3
description: You can use an Azure Resource Manager template to create an Azure Automation account.
4
4
ms.service: automation
5
5
ms.subservice: update-management
@@ -10,18 +10,18 @@ ms.date: 04/24/2020
10
10
11
11
---
12
12
13
-
# Create an Automation account by using Azure Resource Manager template
13
+
# Create an Automation account by using an Azure Resource Manager template
14
14
15
15
You can use [Azure Resource Manager templates](../azure-resource-manager/templates/template-syntax.md) to create an Azure Automation account in your resource group. This article provides a sample template that:
16
16
17
17
* Automates the creation of an Azure Monitor Log Analytics workspace.
18
18
* Automates the creation of an Azure Automation account.
19
19
* Links the Automation account to the Log Analytics workspace.
20
20
21
-
The template doesn't automate the onboarding of one or more Azure or non-Azure virtual machines, or solutions.
21
+
The template doesn't automate the onboarding of Azure or non-Azure virtual machines or solutions.
22
22
23
23
>[!NOTE]
24
-
>Creation of the Automation Run As account is not supported when you're using an Azure Resource Manager template. To create a Run As account manually from the portal or with PowerShell, see [Manage Run As account](manage-runas-account.md).
24
+
>Creation of the Automation Run As account is not supported when you're using an Azure Resource Manager template. To create a Run As account manually from the portal or with PowerShell, see [Manage Run As accounts](manage-runas-account.md).
25
25
26
26
## API versions
27
27
@@ -47,23 +47,23 @@ The JSON template is configured to prompt you for:
47
47
48
48
The following parameters in the template are set with a default value for the Log Analytics workspace:
49
49
50
-
**sku*- defaults to the per GB pricing tier released in the April 2018 pricing model.
51
-
**dataRetention*- defaults to 30 days.
52
-
**capacityReservationLevel*- defaults to 100 GB.
50
+
**sku* defaults to the per GB pricing tier released in the April 2018 pricing model.
51
+
**dataRetention* defaults to 30 days.
52
+
**capacityReservationLevel* defaults to 100 GB.
53
53
54
54
>[!WARNING]
55
55
>If you want to create or configure a Log Analytics workspace in a subscription that has opted into the April 2018 pricing model, the only valid Log Analytics pricing tier is *PerGB2018*.
56
56
>
57
57
58
58
The JSON template specifies a default value for the other parameters that would likely be used as a standard configuration in your environment. You can store the template in an Azure storage account for shared access in your organization. For more information about working with templates, see [Deploy resources with Resource Manager templates and the Azure CLI](../azure-resource-manager/templates/deploy-cli.md).
59
59
60
-
If you're new to Azure Automation and Azure Monitor, it is important that you understand the following configuration details in order to avoid errors when you try to create, configure, and use a Log Analytics workspace linked to your new Automation account. You should:
60
+
If you're new to Azure Automation and Azure Monitor, it's important that you understand the following configuration details. They can help you avoid errors when you try to create, configure, and use a Log Analytics workspace linked to your new Automation account.
61
61
62
-
* Review [additional details](../azure-monitor/platform/template-workspace-configuration.md#create-a-log-analytics-workspace), to fully understand workspace configuration options such as access control mode, pricing tier, retention, and capacity reservation level.
62
+
* Review [additional details](../azure-monitor/platform/template-workspace-configuration.md#create-a-log-analytics-workspace) to fully understand workspace configuration options, such as access control mode, pricing tier, retention, and capacity reservation level.
63
63
64
-
* Review [workspace mappings](how-to/region-mappings.md), to specify the supported regions inline or in a parameter file, because only certain regions are supported for linking a Log Analytics workspace and an Automation account in your subscription.
64
+
* Review [workspace mappings](how-to/region-mappings.md) to specify the supported regions inline or in a parameter file. Only certain regions are supported for linking a Log Analytics workspace and an Automation account in your subscription.
65
65
66
-
*Review the [workspace design guidance](../azure-monitor/platform/design-logs-deployment.md), to learn about access control and understand the design implementation strategies we recommend for your organization, if you're new to Azure Monitor Logs and have not deployed a workspace already.
66
+
*If you're new to Azure Monitor logs and have not deployed a workspace already, you should review the [workspace design guidance](../azure-monitor/platform/design-logs-deployment.md). It will help you to learn about access control, and understand the design implementation strategies we recommend for your organization.
67
67
68
68
## Deploy the template
69
69
@@ -92,7 +92,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
92
92
],
93
93
"defaultValue": "pergb2018",
94
94
"metadata": {
95
-
"description": "Pricing tier: perGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium) which are not available to all customers."
95
+
"description": "Pricing tier: perGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium), which are not available to all customers."
96
96
}
97
97
},
98
98
"dataRetention": {
@@ -135,7 +135,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
135
135
},
136
136
"sampleGraphicalRunbookDescription": {
137
137
"type": "String",
138
-
"defaultValue": " An example runbook which gets all the Resource Manager resources using the Run As account (Service Principal)."
138
+
"defaultValue": " An example runbook that gets all the Resource Manager resources by using the Run As account (service principal)."
139
139
},
140
140
"sampleGraphicalRunbookContentUri": {
141
141
"type": "String",
@@ -147,7 +147,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
147
147
},
148
148
"samplePowerShellRunbookDescription": {
149
149
"type": "String",
150
-
"defaultValue": " An example runbook which gets all the Resource Manager resources using the Run As account (Service Principal)."
150
+
"defaultValue": " An example runbook that gets all the Resource Manager resources by using the Run As account (service principal)."
151
151
},
152
152
"samplePowerShellRunbookContentUri": {
153
153
"type": "String",
@@ -159,7 +159,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
159
159
},
160
160
"samplePython2RunbookDescription": {
161
161
"type": "String",
162
-
"defaultValue": " An example runbook which gets all the Resource Manager resources using the Run As account (Service Principal)."
162
+
"defaultValue": " An example runbook that gets all the Resource Manager resources by using the Run As account (service principal)."
163
163
},
164
164
"samplePython2RunbookContentUri": {
165
165
"type": "String",
@@ -300,7 +300,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
300
300
az group deployment create --resource-group <my-resource-group> --name <my-deployment-name> --template-file deployAzAutomationAccttemplate.json
301
301
```
302
302
303
-
The deployment can take a few minutes to finish. When it does, you'll see a message like the one below that includes the result.
303
+
The deployment can take a few minutes to finish. When it does, you'll see a message like the following that includes the result.
304
304
305
305

0 commit comments