Microsoft.Automation automationAccounts 2015-10-31

Bicep resource definition

The automationAccounts resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Automation/automationAccounts resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Automation/automationAccounts@2015-10-31' = {
  location: 'string'
  name: 'string'
  properties: {
    sku: {
      capacity: int
      family: 'string'
      name: 'string'
    }
  }
  tags: {
    {customized property}: 'string'
  }
}

Property values

AutomationAccountCreateOrUpdateParametersTags

Name Description Value

AutomationAccountCreateOrUpdatePropertiesOrAutomationAccountProperties

Name Description Value
sku Gets or sets account SKU. Sku

Microsoft.Automation/automationAccounts

Name Description Value
location Gets or sets the location of the resource. string
name The resource name string (required)
properties Gets or sets account create or update properties. AutomationAccountCreateOrUpdatePropertiesOrAutomationAccountProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

Sku

Name Description Value
capacity Gets or sets the SKU capacity. int
family Gets or sets the SKU family. string
name Gets or sets the SKU name of the account. 'Basic'
'Free' (required)

Quickstart samples

The following quickstart samples deploy this resource type.

Bicep File Description
ASR Runbooks Deploys Automation Runbooks for ASR Recovery Plans

ARM template resource definition

The automationAccounts resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Automation/automationAccounts resource, add the following JSON to your template.

{
  "type": "Microsoft.Automation/automationAccounts",
  "apiVersion": "2015-10-31",
  "name": "string",
  "location": "string",
  "properties": {
    "sku": {
      "capacity": "int",
      "family": "string",
      "name": "string"
    }
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property values

AutomationAccountCreateOrUpdateParametersTags

Name Description Value

AutomationAccountCreateOrUpdatePropertiesOrAutomationAccountProperties

Name Description Value
sku Gets or sets account SKU. Sku

Microsoft.Automation/automationAccounts

Name Description Value
apiVersion The api version '2015-10-31'
location Gets or sets the location of the resource. string
name The resource name string (required)
properties Gets or sets account create or update properties. AutomationAccountCreateOrUpdatePropertiesOrAutomationAccountProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Automation/automationAccounts'

Sku

Name Description Value
capacity Gets or sets the SKU capacity. int
family Gets or sets the SKU family. string
name Gets or sets the SKU name of the account. 'Basic'
'Free' (required)

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
ASR Runbooks

Deploy to Azure
Deploys Automation Runbooks for ASR Recovery Plans
Azure Resource Optimization (ARO) Toolkit

Deploy to Azure
The Azure Resource Optimization Toolkit is a decentralized, native Azure solution using serverless technologies to optimize Azure resources on your subscription. Optimization happens automatically on your subscription once you enable or create your own schedule, including on new resources. This is an Azure Automation account with preconfigured runbooks and schedules you can utilize on your subscription to start saving money.
Create Azure Automation account

Deploy to Azure
This template provides an example of how create an Azure Automation account and links it to a new or existing Azure Monitor Log Analytics workspace.
OMS - Azure Resource Usage Solution

Deploy to Azure
Solution brings billing infortmation about Azure Resources into OMS. Cost of resources can be displayed in different currency and locale.
OMS - Azure VM Inventory Solution

Deploy to Azure
Enables Azure VM Inventory Solution in OMS. Solution collects Azure VM inventory along with disks, networking components, NSG rules and extensions into OMS workspace.
OMS ASR Solution

Deploy to Azure
Enables the ASR (v2) Solution in OMS
OMS Service Bus Solution

Deploy to Azure
Monitors Azure Service Bus instances
OMS Solution - Hyper-V Replica

Deploy to Azure
A template for creating an OMS solution to monitor Hyper-V replica.
OMS VMM Analytics

Deploy to Azure
Provides a single view of the jobs' status across multiple VMM instances that helps you gain insight about the health & performance of these jobs.

Terraform (AzAPI provider) resource definition

The automationAccounts resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Automation/automationAccounts resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Automation/automationAccounts@2015-10-31"
  name = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = jsonencode({
    properties = {
      sku = {
        capacity = int
        family = "string"
        name = "string"
      }
    }
  })
}

Property values

AutomationAccountCreateOrUpdateParametersTags

Name Description Value

AutomationAccountCreateOrUpdatePropertiesOrAutomationAccountProperties

Name Description Value
sku Gets or sets account SKU. Sku

Microsoft.Automation/automationAccounts

Name Description Value
location Gets or sets the location of the resource. string
name The resource name string (required)
properties Gets or sets account create or update properties. AutomationAccountCreateOrUpdatePropertiesOrAutomationAccountProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Automation/automationAccounts@2015-10-31"

Sku

Name Description Value
capacity Gets or sets the SKU capacity. int
family Gets or sets the SKU family. string
name Gets or sets the SKU name of the account. 'Basic'
'Free' (required)