Account
Manages a Automation Account.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAccount = new Azure.Automation.Account("exampleAccount", new Azure.Automation.AccountArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
SkuName = "Basic",
Tags =
{
{ "environment", "development" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/automation"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = automation.NewAccount(ctx, "exampleAccount", &automation.AccountArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
SkuName: pulumi.String("Basic"),
Tags: pulumi.Map{
"environment": pulumi.String("development"),
},
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.automation.Account("exampleAccount",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku_name="Basic",
tags={
"environment": "development",
})import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.automation.Account("exampleAccount", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
skuName: "Basic",
tags: {
environment: "development",
},
});Create a Account Resource
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);def Account(resource_name, opts=None, location=None, name=None, resource_group_name=None, sku_name=None, tags=None, __props__=None);func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)- 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.
- opts ResourceOptions
- A bag of options that control this 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.
Account Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model 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 name of the account - only
Basicis supported at this time.- 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.
- Dictionary<string, string>
A mapping of tags to assign to the resource.
- 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 name of the account - only
Basicis supported at this time.- 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.
- map[string]string
A mapping of tags to assign to the resource.
- 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 name of the account - only
Basicis supported at this time.- 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.
- {[key: string]: string}
A mapping of tags to assign to the resource.
- 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 name of the account - only
Basicis supported at this time.- 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.
- Dict[str, str]
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:
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- id str
- The provider-assigned unique ID for this managed resource.
Look up an 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): Accountstatic get(resource_name, id, opts=None, dsc_primary_access_key=None, dsc_secondary_access_key=None, dsc_server_endpoint=None, location=None, name=None, resource_group_name=None, sku_name=None, tags=None, __props__=None);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)- 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.
The following state arguments are supported:
- 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.
- 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.
- 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 name of the account - only
Basicis supported at this time.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- 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.
- 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.
- 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 name of the account - only
Basicis supported at this time.- map[string]string
A mapping of tags to assign to the resource.
- 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.
- 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.
- 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 name of the account - only
Basicis supported at this time.- {[key: string]: string}
A mapping of tags to assign to the resource.
- 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.
- 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.
- 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 name of the account - only
Basicis supported at this time.- Dict[str, str]
A mapping of tags to assign to the resource.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.