We recommend using Azure Native.
azure.automation.Account
Explore with Pulumi AI
Manages a Automation Account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleAccount = new azure.automation.Account("example", {
name: "example-account",
location: example.location,
resourceGroupName: example.name,
skuName: "Basic",
tags: {
environment: "development",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.automation.Account("example",
name="example-account",
location=example.location,
resource_group_name=example.name,
sku_name="Basic",
tags={
"environment": "development",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/automation"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = automation.NewAccount(ctx, "example", &automation.AccountArgs{
Name: pulumi.String("example-account"),
Location: example.Location,
ResourceGroupName: example.Name,
SkuName: pulumi.String("Basic"),
Tags: pulumi.StringMap{
"environment": pulumi.String("development"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleAccount = new Azure.Automation.Account("example", new()
{
Name = "example-account",
Location = example.Location,
ResourceGroupName = example.Name,
SkuName = "Basic",
Tags =
{
{ "environment", "development" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.automation.Account;
import com.pulumi.azure.automation.AccountArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("example-account")
.location(example.location())
.resourceGroupName(example.name())
.skuName("Basic")
.tags(Map.of("environment", "development"))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:automation:Account
name: example
properties:
name: example-account
location: ${example.location}
resourceGroupName: ${example.name}
skuName: Basic
tags:
environment: development
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
encryptions: Optional[Sequence[AccountEncryptionArgs]] = None,
identity: Optional[AccountIdentityArgs] = None,
local_authentication_enabled: Optional[bool] = None,
location: Optional[str] = None,
name: Optional[str] = None,
public_network_access_enabled: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: azure:automation:Account
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var accountResource = new Azure.Automation.Account("accountResource", new()
{
ResourceGroupName = "string",
SkuName = "string",
Encryptions = new[]
{
new Azure.Automation.Inputs.AccountEncryptionArgs
{
KeyVaultKeyId = "string",
UserAssignedIdentityId = "string",
},
},
Identity = new Azure.Automation.Inputs.AccountIdentityArgs
{
Type = "string",
IdentityIds = new[]
{
"string",
},
PrincipalId = "string",
TenantId = "string",
},
LocalAuthenticationEnabled = false,
Location = "string",
Name = "string",
PublicNetworkAccessEnabled = false,
Tags =
{
{ "string", "string" },
},
});
example, err := automation.NewAccount(ctx, "accountResource", &automation.AccountArgs{
ResourceGroupName: pulumi.String("string"),
SkuName: pulumi.String("string"),
Encryptions: automation.AccountEncryptionArray{
&automation.AccountEncryptionArgs{
KeyVaultKeyId: pulumi.String("string"),
UserAssignedIdentityId: pulumi.String("string"),
},
},
Identity: &automation.AccountIdentityArgs{
Type: pulumi.String("string"),
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
LocalAuthenticationEnabled: pulumi.Bool(false),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
PublicNetworkAccessEnabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var accountResource = new Account("accountResource", AccountArgs.builder()
.resourceGroupName("string")
.skuName("string")
.encryptions(AccountEncryptionArgs.builder()
.keyVaultKeyId("string")
.userAssignedIdentityId("string")
.build())
.identity(AccountIdentityArgs.builder()
.type("string")
.identityIds("string")
.principalId("string")
.tenantId("string")
.build())
.localAuthenticationEnabled(false)
.location("string")
.name("string")
.publicNetworkAccessEnabled(false)
.tags(Map.of("string", "string"))
.build());
account_resource = azure.automation.Account("accountResource",
resource_group_name="string",
sku_name="string",
encryptions=[{
"keyVaultKeyId": "string",
"userAssignedIdentityId": "string",
}],
identity={
"type": "string",
"identityIds": ["string"],
"principalId": "string",
"tenantId": "string",
},
local_authentication_enabled=False,
location="string",
name="string",
public_network_access_enabled=False,
tags={
"string": "string",
})
const accountResource = new azure.automation.Account("accountResource", {
resourceGroupName: "string",
skuName: "string",
encryptions: [{
keyVaultKeyId: "string",
userAssignedIdentityId: "string",
}],
identity: {
type: "string",
identityIds: ["string"],
principalId: "string",
tenantId: "string",
},
localAuthenticationEnabled: false,
location: "string",
name: "string",
publicNetworkAccessEnabled: false,
tags: {
string: "string",
},
});
type: azure:automation:Account
properties:
encryptions:
- keyVaultKeyId: string
userAssignedIdentityId: string
identity:
identityIds:
- string
principalId: string
tenantId: string
type: string
localAuthenticationEnabled: false
location: string
name: string
publicNetworkAccessEnabled: false
resourceGroupName: string
skuName: string
tags:
string: string
Account Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Account resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- Sku
Name string - The SKU of the account. Possible values are
Basic
andFree
. - Encryptions
List<Account
Encryption> - Identity
Account
Identity - An
identity
block as defined below. - Local
Authentication boolEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- Public
Network boolAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - Dictionary<string, string>
- Resource
Group stringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- Sku
Name string - The SKU of the account. Possible values are
Basic
andFree
. - Encryptions
[]Account
Encryption Args - Identity
Account
Identity Args - An
identity
block as defined below. - Local
Authentication boolEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- Public
Network boolAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - map[string]string
- resource
Group StringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku
Name String - The SKU of the account. Possible values are
Basic
andFree
. - encryptions
List<Account
Encryption> - identity
Account
Identity - An
identity
block as defined below. - local
Authentication BooleanEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- public
Network BooleanAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - Map<String,String>
- resource
Group stringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku
Name string - The SKU of the account. Possible values are
Basic
andFree
. - encryptions
Account
Encryption[] - identity
Account
Identity - An
identity
block as defined below. - local
Authentication booleanEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- public
Network booleanAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - {[key: string]: string}
- resource_
group_ strname - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku_
name str - The SKU of the account. Possible values are
Basic
andFree
. - encryptions
Sequence[Account
Encryption Args] - identity
Account
Identity Args - An
identity
block as defined below. - local_
authentication_ boolenabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- public_
network_ boolaccess_ enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - Mapping[str, str]
- resource
Group StringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku
Name String - The SKU of the account. Possible values are
Basic
andFree
. - encryptions List<Property Map>
- identity Property Map
- An
identity
block as defined below. - local
Authentication BooleanEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- public
Network BooleanAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - Map<String>
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
- Dsc
Primary stringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Secondary stringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Server stringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- Hybrid
Service stringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Endpoint List<AccountConnections Private Endpoint Connection>
- Dsc
Primary stringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Secondary stringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Server stringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- Hybrid
Service stringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Endpoint []AccountConnections Private Endpoint Connection
- dsc
Primary StringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Secondary StringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Server StringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- hybrid
Service StringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- id String
- The provider-assigned unique ID for this managed resource.
- private
Endpoint List<AccountConnections Private Endpoint Connection>
- dsc
Primary stringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Secondary stringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Server stringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- hybrid
Service stringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- id string
- The provider-assigned unique ID for this managed resource.
- private
Endpoint AccountConnections Private Endpoint Connection[]
- dsc_
primary_ straccess_ key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc_
secondary_ straccess_ key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc_
server_ strendpoint - The DSC Server Endpoint associated with this Automation Account.
- hybrid_
service_ strurl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- id str
- The provider-assigned unique ID for this managed resource.
- private_
endpoint_ Sequence[Accountconnections Private Endpoint Connection]
- dsc
Primary StringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Secondary StringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Server StringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- hybrid
Service StringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- id String
- The provider-assigned unique ID for this managed resource.
- private
Endpoint List<Property Map>Connections
Look up Existing Account Resource
Get an existing Account resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AccountState, opts?: CustomResourceOptions): Account
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dsc_primary_access_key: Optional[str] = None,
dsc_secondary_access_key: Optional[str] = None,
dsc_server_endpoint: Optional[str] = None,
encryptions: Optional[Sequence[AccountEncryptionArgs]] = None,
hybrid_service_url: Optional[str] = None,
identity: Optional[AccountIdentityArgs] = None,
local_authentication_enabled: Optional[bool] = None,
location: Optional[str] = None,
name: Optional[str] = None,
private_endpoint_connections: Optional[Sequence[AccountPrivateEndpointConnectionArgs]] = None,
public_network_access_enabled: Optional[bool] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Account
func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Dsc
Primary stringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Secondary stringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Server stringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- Encryptions
List<Account
Encryption> - Hybrid
Service stringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- Identity
Account
Identity - An
identity
block as defined below. - Local
Authentication boolEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- Private
Endpoint List<AccountConnections Private Endpoint Connection> - Public
Network boolAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - Resource
Group stringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- Sku
Name string - The SKU of the account. Possible values are
Basic
andFree
. - Dictionary<string, string>
- Dsc
Primary stringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Secondary stringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- Dsc
Server stringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- Encryptions
[]Account
Encryption Args - Hybrid
Service stringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- Identity
Account
Identity Args - An
identity
block as defined below. - Local
Authentication boolEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- Private
Endpoint []AccountConnections Private Endpoint Connection Args - Public
Network boolAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - Resource
Group stringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- Sku
Name string - The SKU of the account. Possible values are
Basic
andFree
. - map[string]string
- dsc
Primary StringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Secondary StringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Server StringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- encryptions
List<Account
Encryption> - hybrid
Service StringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- identity
Account
Identity - An
identity
block as defined below. - local
Authentication BooleanEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- private
Endpoint List<AccountConnections Private Endpoint Connection> - public
Network BooleanAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - resource
Group StringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku
Name String - The SKU of the account. Possible values are
Basic
andFree
. - Map<String,String>
- dsc
Primary stringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Secondary stringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Server stringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- encryptions
Account
Encryption[] - hybrid
Service stringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- identity
Account
Identity - An
identity
block as defined below. - local
Authentication booleanEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- private
Endpoint AccountConnections Private Endpoint Connection[] - public
Network booleanAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - resource
Group stringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku
Name string - The SKU of the account. Possible values are
Basic
andFree
. - {[key: string]: string}
- dsc_
primary_ straccess_ key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc_
secondary_ straccess_ key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc_
server_ strendpoint - The DSC Server Endpoint associated with this Automation Account.
- encryptions
Sequence[Account
Encryption Args] - hybrid_
service_ strurl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- identity
Account
Identity Args - An
identity
block as defined below. - local_
authentication_ boolenabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- private_
endpoint_ Sequence[Accountconnections Private Endpoint Connection Args] - public_
network_ boolaccess_ enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - resource_
group_ strname - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku_
name str - The SKU of the account. Possible values are
Basic
andFree
. - Mapping[str, str]
- dsc
Primary StringAccess Key - The Primary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Secondary StringAccess Key - The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
- dsc
Server StringEndpoint - The DSC Server Endpoint associated with this Automation Account.
- encryptions List<Property Map>
- hybrid
Service StringUrl - The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
- identity Property Map
- An
identity
block as defined below. - local
Authentication BooleanEnabled - Whether requests using non-AAD authentication are blocked. Defaults to
true
. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Automation Account. Changing this forces a new resource to be created.
- private
Endpoint List<Property Map>Connections - public
Network BooleanAccess Enabled - Whether public network access is allowed for the automation account. Defaults to
true
. - resource
Group StringName - The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
- sku
Name String - The SKU of the account. Possible values are
Basic
andFree
. - Map<String>
Supporting Types
AccountEncryption, AccountEncryptionArgs
- Key
Vault stringKey Id - The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
- Key
Source string - User
Assigned stringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- Key
Vault stringKey Id - The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
- Key
Source string - User
Assigned stringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key
Vault StringKey Id - The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
- key
Source String - user
Assigned StringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key
Vault stringKey Id - The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
- key
Source string - user
Assigned stringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key_
vault_ strkey_ id - The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
- key_
source str - user_
assigned_ stridentity_ id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key
Vault StringKey Id - The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
- key
Source String - user
Assigned StringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
AccountIdentity, AccountIdentityArgs
- Type string
- The type of identity used for this Automation Account. Possible values are
SystemAssigned
,UserAssigned
andSystemAssigned, UserAssigned
. - Identity
Ids List<string> The ID of the User Assigned Identity which should be assigned to this Automation Account.
Note:
identity_ids
is required whentype
is set toUserAssigned
orSystemAssigned, UserAssigned
.- Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- Type string
- The type of identity used for this Automation Account. Possible values are
SystemAssigned
,UserAssigned
andSystemAssigned, UserAssigned
. - Identity
Ids []string The ID of the User Assigned Identity which should be assigned to this Automation Account.
Note:
identity_ids
is required whentype
is set toUserAssigned
orSystemAssigned, UserAssigned
.- Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- type String
- The type of identity used for this Automation Account. Possible values are
SystemAssigned
,UserAssigned
andSystemAssigned, UserAssigned
. - identity
Ids List<String> The ID of the User Assigned Identity which should be assigned to this Automation Account.
Note:
identity_ids
is required whentype
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
- type string
- The type of identity used for this Automation Account. Possible values are
SystemAssigned
,UserAssigned
andSystemAssigned, UserAssigned
. - identity
Ids string[] The ID of the User Assigned Identity which should be assigned to this Automation Account.
Note:
identity_ids
is required whentype
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id string - The Principal ID associated with this Managed Service Identity.
- tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- type str
- The type of identity used for this Automation Account. Possible values are
SystemAssigned
,UserAssigned
andSystemAssigned, UserAssigned
. - identity_
ids Sequence[str] The ID of the User Assigned Identity which should be assigned to this Automation Account.
Note:
identity_ids
is required whentype
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal_
id str - The Principal ID associated with this Managed Service Identity.
- tenant_
id str - The Tenant ID associated with this Managed Service Identity.
- type String
- The type of identity used for this Automation Account. Possible values are
SystemAssigned
,UserAssigned
andSystemAssigned, UserAssigned
. - identity
Ids List<String> The ID of the User Assigned Identity which should be assigned to this Automation Account.
Note:
identity_ids
is required whentype
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
AccountPrivateEndpointConnection, AccountPrivateEndpointConnectionArgs
Import
Automation Accounts can be imported using the resource id
, e.g.
$ pulumi import azure:automation/account:Account account1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.