Skip to content

Commit c89f928

Browse files
committed
edit pass: automation-create-account-template
1 parent de6b1c0 commit c89f928

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

articles/automation/automation-create-account-template.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
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
33
description: You can use an Azure Resource Manager template to create an Azure Automation account.
44
ms.service: automation
55
ms.subservice: update-management
@@ -10,18 +10,18 @@ ms.date: 04/24/2020
1010

1111
---
1212

13-
# Create an Automation account by using Azure Resource Manager template
13+
# Create an Automation account by using an Azure Resource Manager template
1414

1515
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:
1616

1717
* Automates the creation of an Azure Monitor Log Analytics workspace.
1818
* Automates the creation of an Azure Automation account.
1919
* Links the Automation account to the Log Analytics workspace.
2020

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.
2222

2323
>[!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).
2525
2626
## API versions
2727

@@ -47,23 +47,23 @@ The JSON template is configured to prompt you for:
4747

4848
The following parameters in the template are set with a default value for the Log Analytics workspace:
4949

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.
5353

5454
>[!WARNING]
5555
>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*.
5656
>
5757
5858
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).
5959

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.
6161

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.
6363

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.
6565

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.
6767

6868
## Deploy the template
6969

@@ -92,7 +92,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
9292
],
9393
"defaultValue": "pergb2018",
9494
"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."
9696
}
9797
},
9898
"dataRetention": {
@@ -135,7 +135,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
135135
},
136136
"sampleGraphicalRunbookDescription": {
137137
"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)."
139139
},
140140
"sampleGraphicalRunbookContentUri": {
141141
"type": "String",
@@ -147,7 +147,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
147147
},
148148
"samplePowerShellRunbookDescription": {
149149
"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)."
151151
},
152152
"samplePowerShellRunbookContentUri": {
153153
"type": "String",
@@ -159,7 +159,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
159159
},
160160
"samplePython2RunbookDescription": {
161161
"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)."
163163
},
164164
"samplePython2RunbookContentUri": {
165165
"type": "String",
@@ -300,7 +300,7 @@ If you're new to Azure Automation and Azure Monitor, it is important that you un
300300
az group deployment create --resource-group <my-resource-group> --name <my-deployment-name> --template-file deployAzAutomationAccttemplate.json
301301
```
302302

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.
304304

305305
![Example result when deployment is complete](media/automation-create-account-template/template-output.png)
306306

0 commit comments

Comments
 (0)