1. Packages
  2. Azure Classic
  3. API Docs
  4. automation
  5. Account

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.automation.Account

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    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/v5/go/azure/automation"
    	"github.com/pulumi/pulumi-azure/sdk/v5/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

    new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
    @overload
    def Account(resource_name: str,
                opts: Optional[ResourceOptions] = 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,
                resource_group_name: Optional[str] = None,
                sku_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    @overload
    def Account(resource_name: str,
                args: AccountArgs,
                opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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:

    ResourceGroupName string
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    SkuName string
    The SKU of the account. Possible values are Basic and Free.
    Encryptions List<AccountEncryption>
    An encryption block as defined below.
    Identity AccountIdentity
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    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.
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for the automation account. Defaults to true.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    ResourceGroupName string
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    SkuName string
    The SKU of the account. Possible values are Basic and Free.
    Encryptions []AccountEncryptionArgs
    An encryption block as defined below.
    Identity AccountIdentityArgs
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    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.
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for the automation account. Defaults to true.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    resourceGroupName String
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    skuName String
    The SKU of the account. Possible values are Basic and Free.
    encryptions List<AccountEncryption>
    An encryption block as defined below.
    identity AccountIdentity
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    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.
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for the automation account. Defaults to true.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    resourceGroupName string
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    skuName string
    The SKU of the account. Possible values are Basic and Free.
    encryptions AccountEncryption[]
    An encryption block as defined below.
    identity AccountIdentity
    An identity block as defined below.
    localAuthenticationEnabled boolean
    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.
    publicNetworkAccessEnabled boolean
    Whether public network access is allowed for the automation account. Defaults to true.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    resource_group_name str
    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 and Free.
    encryptions Sequence[AccountEncryptionArgs]
    An encryption block as defined below.
    identity AccountIdentityArgs
    An identity block as defined below.
    local_authentication_enabled bool
    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_access_enabled bool
    Whether public network access is allowed for the automation account. Defaults to true.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    resourceGroupName String
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    skuName String
    The SKU of the account. Possible values are Basic and Free.
    encryptions List<Property Map>
    An encryption block as defined below.
    identity Property Map
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    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.
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for the automation account. Defaults to true.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:

    DscPrimaryAccessKey string
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    DscSecondaryAccessKey string
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    DscServerEndpoint string
    The DSC Server Endpoint associated with this Automation Account.
    HybridServiceUrl string
    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.
    PrivateEndpointConnections List<AccountPrivateEndpointConnection>
    DscPrimaryAccessKey string
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    DscSecondaryAccessKey string
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    DscServerEndpoint string
    The DSC Server Endpoint associated with this Automation Account.
    HybridServiceUrl string
    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.
    PrivateEndpointConnections []AccountPrivateEndpointConnection
    dscPrimaryAccessKey String
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dscSecondaryAccessKey String
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dscServerEndpoint String
    The DSC Server Endpoint associated with this Automation Account.
    hybridServiceUrl String
    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.
    privateEndpointConnections List<AccountPrivateEndpointConnection>
    dscPrimaryAccessKey string
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dscSecondaryAccessKey string
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dscServerEndpoint string
    The DSC Server Endpoint associated with this Automation Account.
    hybridServiceUrl string
    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.
    privateEndpointConnections AccountPrivateEndpointConnection[]
    dsc_primary_access_key str
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dsc_secondary_access_key str
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dsc_server_endpoint str
    The DSC Server Endpoint associated with this Automation Account.
    hybrid_service_url str
    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_connections Sequence[AccountPrivateEndpointConnection]
    dscPrimaryAccessKey String
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dscSecondaryAccessKey String
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dscServerEndpoint String
    The DSC Server Endpoint associated with this Automation Account.
    hybridServiceUrl String
    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.
    privateEndpointConnections List<Property Map>

    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.
    The following state arguments are supported:
    DscPrimaryAccessKey string
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    DscSecondaryAccessKey string
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    DscServerEndpoint string
    The DSC Server Endpoint associated with this Automation Account.
    Encryptions List<AccountEncryption>
    An encryption block as defined below.
    HybridServiceUrl string
    The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
    Identity AccountIdentity
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    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.
    PrivateEndpointConnections List<AccountPrivateEndpointConnection>
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for the automation account. Defaults to true.
    ResourceGroupName string
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    SkuName string
    The SKU of the account. Possible values are Basic and Free.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    DscPrimaryAccessKey string
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    DscSecondaryAccessKey string
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    DscServerEndpoint string
    The DSC Server Endpoint associated with this Automation Account.
    Encryptions []AccountEncryptionArgs
    An encryption block as defined below.
    HybridServiceUrl string
    The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
    Identity AccountIdentityArgs
    An identity block as defined below.
    LocalAuthenticationEnabled bool
    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.
    PrivateEndpointConnections []AccountPrivateEndpointConnectionArgs
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for the automation account. Defaults to true.
    ResourceGroupName string
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    SkuName string
    The SKU of the account. Possible values are Basic and Free.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    dscPrimaryAccessKey String
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dscSecondaryAccessKey String
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dscServerEndpoint String
    The DSC Server Endpoint associated with this Automation Account.
    encryptions List<AccountEncryption>
    An encryption block as defined below.
    hybridServiceUrl String
    The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
    identity AccountIdentity
    An identity block as defined below.
    localAuthenticationEnabled Boolean
    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.
    privateEndpointConnections List<AccountPrivateEndpointConnection>
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for the automation account. Defaults to true.
    resourceGroupName String
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    skuName String
    The SKU of the account. Possible values are Basic and Free.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    dscPrimaryAccessKey string
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dscSecondaryAccessKey string
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dscServerEndpoint string
    The DSC Server Endpoint associated with this Automation Account.
    encryptions AccountEncryption[]
    An encryption block as defined below.
    hybridServiceUrl string
    The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
    identity AccountIdentity
    An identity block as defined below.
    localAuthenticationEnabled boolean
    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.
    privateEndpointConnections AccountPrivateEndpointConnection[]
    publicNetworkAccessEnabled boolean
    Whether public network access is allowed for the automation account. Defaults to true.
    resourceGroupName string
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    skuName string
    The SKU of the account. Possible values are Basic and Free.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    dsc_primary_access_key str
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dsc_secondary_access_key str
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dsc_server_endpoint str
    The DSC Server Endpoint associated with this Automation Account.
    encryptions Sequence[AccountEncryptionArgs]
    An encryption block as defined below.
    hybrid_service_url str
    The URL of automation hybrid service which is used for hybrid worker on-boarding With this Automation Account.
    identity AccountIdentityArgs
    An identity block as defined below.
    local_authentication_enabled bool
    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_connections Sequence[AccountPrivateEndpointConnectionArgs]
    public_network_access_enabled bool
    Whether public network access is allowed for the automation account. Defaults to true.
    resource_group_name str
    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 and Free.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    dscPrimaryAccessKey String
    The Primary Access Key for the DSC Endpoint associated with this Automation Account.
    dscSecondaryAccessKey String
    The Secondary Access Key for the DSC Endpoint associated with this Automation Account.
    dscServerEndpoint String
    The DSC Server Endpoint associated with this Automation Account.
    encryptions List<Property Map>
    An encryption block as defined below.
    hybridServiceUrl String
    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.
    localAuthenticationEnabled Boolean
    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.
    privateEndpointConnections List<Property Map>
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for the automation account. Defaults to true.
    resourceGroupName String
    The name of the resource group in which the Automation Account is created. Changing this forces a new resource to be created.
    skuName String
    The SKU of the account. Possible values are Basic and Free.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Supporting Types

    AccountEncryption, AccountEncryptionArgs

    KeyVaultKeyId string
    The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
    KeySource string

    Deprecated:This field is now ignored and will be removed in the next major version of the Azure Provider, the encryption block can be omitted to disable encryption

    UserAssignedIdentityId string
    The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
    KeyVaultKeyId string
    The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
    KeySource string

    Deprecated:This field is now ignored and will be removed in the next major version of the Azure Provider, the encryption block can be omitted to disable encryption

    UserAssignedIdentityId string
    The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
    keyVaultKeyId String
    The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
    keySource String

    Deprecated:This field is now ignored and will be removed in the next major version of the Azure Provider, the encryption block can be omitted to disable encryption

    userAssignedIdentityId String
    The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
    keyVaultKeyId string
    The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
    keySource string

    Deprecated:This field is now ignored and will be removed in the next major version of the Azure Provider, the encryption block can be omitted to disable encryption

    userAssignedIdentityId string
    The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
    key_vault_key_id str
    The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
    key_source str

    Deprecated:This field is now ignored and will be removed in the next major version of the Azure Provider, the encryption block can be omitted to disable encryption

    user_assigned_identity_id str
    The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
    keyVaultKeyId String
    The ID of the Key Vault Key which should be used to Encrypt the data in this Automation Account.
    keySource String

    Deprecated:This field is now ignored and will be removed in the next major version of the Azure Provider, the encryption block can be omitted to disable encryption

    userAssignedIdentityId String
    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 and SystemAssigned, UserAssigned.
    IdentityIds List<string>

    The ID of the User Assigned Identity which should be assigned to this Automation Account.

    Note: identity_ids is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    PrincipalId string
    The Principal ID associated with this Managed Service Identity.
    TenantId 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 and SystemAssigned, UserAssigned.
    IdentityIds []string

    The ID of the User Assigned Identity which should be assigned to this Automation Account.

    Note: identity_ids is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    PrincipalId string
    The Principal ID associated with this Managed Service Identity.
    TenantId 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 and SystemAssigned, UserAssigned.
    identityIds List<String>

    The ID of the User Assigned Identity which should be assigned to this Automation Account.

    Note: identity_ids is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId String
    The Principal ID associated with this Managed Service Identity.
    tenantId 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 and SystemAssigned, UserAssigned.
    identityIds string[]

    The ID of the User Assigned Identity which should be assigned to this Automation Account.

    Note: identity_ids is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId string
    The Principal ID associated with this Managed Service Identity.
    tenantId 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 and SystemAssigned, 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 when type is set to UserAssigned or SystemAssigned, 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 and SystemAssigned, UserAssigned.
    identityIds List<String>

    The ID of the User Assigned Identity which should be assigned to this Automation Account.

    Note: identity_ids is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId String
    The Principal ID associated with this Managed Service Identity.
    tenantId String
    The Tenant ID associated with this Managed Service Identity.

    AccountPrivateEndpointConnection, AccountPrivateEndpointConnectionArgs

    Id string
    The ID of the Automation Account.
    Name string
    Specifies the name of the Automation Account. Changing this forces a new resource to be created.
    Id string
    The ID of the Automation Account.
    Name string
    Specifies the name of the Automation Account. Changing this forces a new resource to be created.
    id String
    The ID of the Automation Account.
    name String
    Specifies the name of the Automation Account. Changing this forces a new resource to be created.
    id string
    The ID of the Automation Account.
    name string
    Specifies the name of the Automation Account. Changing this forces a new resource to be created.
    id str
    The ID of the Automation Account.
    name str
    Specifies the name of the Automation Account. Changing this forces a new resource to be created.
    id String
    The ID of the Automation Account.
    name String
    Specifies the name of the Automation Account. Changing this forces a new resource to be created.

    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
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi