GetAccount

Use this data source to access information about an existing Automation Account.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Azure.Automation.GetAccount.InvokeAsync(new Azure.Automation.GetAccountArgs
        {
            Name = "example-account",
            ResourceGroupName = "example-resources",
        }));
        this.AutomationAccountId = example.Apply(example => example.Id);
    }

    [Output("automationAccountId")]
    public Output<string> AutomationAccountId { get; set; }
}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/automation"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        example, err := automation.LookupAccount(ctx, &automation.LookupAccountArgs{
            Name:              "example-account",
            ResourceGroupName: "example-resources",
        }, nil)
        if err != nil {
            return err
        }
        ctx.Export("automationAccountId", example.Id)
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example = azure.automation.get_account(name="example-account",
    resource_group_name="example-resources")
pulumi.export("automationAccountId", example.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.automation.getAccount({
    name: "example-account",
    resourceGroupName: "example-resources",
});
export const automationAccountId = example.then(example => example.id);

Using GetAccount

function getAccount(args: GetAccountArgs, opts?: InvokeOptions): Promise<GetAccountResult>
function  get_account(name=None, resource_group_name=None, opts=None)
func LookupAccount(ctx *Context, args *LookupAccountArgs, opts ...InvokeOption) (*LookupAccountResult, error)

Note: This function is named LookupAccount in the Go SDK.

public static class GetAccount {
    public static Task<GetAccountResult> InvokeAsync(GetAccountArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Name string

The name of the Automation Account.

ResourceGroupName string

Specifies the name of the Resource Group where the Automation Account exists.

Name string

The name of the Automation Account.

ResourceGroupName string

Specifies the name of the Resource Group where the Automation Account exists.

name string

The name of the Automation Account.

resourceGroupName string

Specifies the name of the Resource Group where the Automation Account exists.

name str

The name of the Automation Account.

resource_group_name str

Specifies the name of the Resource Group where the Automation Account exists.

GetAccount Result

The following output properties are available:

Endpoint string

The Endpoint for this Auomation Account.

Id string

The provider-assigned unique ID for this managed resource.

Name string
PrimaryKey string

The Primary Access Key for the Automation Account.

ResourceGroupName string
SecondaryKey string

The Secondary Access Key for the Automation Account.

Endpoint string

The Endpoint for this Auomation Account.

Id string

The provider-assigned unique ID for this managed resource.

Name string
PrimaryKey string

The Primary Access Key for the Automation Account.

ResourceGroupName string
SecondaryKey string

The Secondary Access Key for the Automation Account.

endpoint string

The Endpoint for this Auomation Account.

id string

The provider-assigned unique ID for this managed resource.

name string
primaryKey string

The Primary Access Key for the Automation Account.

resourceGroupName string
secondaryKey string

The Secondary Access Key for the Automation Account.

endpoint str

The Endpoint for this Auomation Account.

id str

The provider-assigned unique ID for this managed resource.

name str
primary_key str

The Primary Access Key for the Automation Account.

resource_group_name str
secondary_key str

The Secondary Access Key for the Automation Account.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.