GetAccount

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

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Azure.Maps.GetAccount.InvokeAsync(new Azure.Maps.GetAccountArgs
        {
            Name = "production",
            ResourceGroupName = "maps",
        }));
        this.MapsAccountId = example.Apply(example => example.Id);
    }

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

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

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

example = azure.maps.get_account(name="production",
    resource_group_name="maps")
pulumi.export("mapsAccountId", example.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.maps.getAccount({
    name: "production",
    resourceGroupName: "maps",
});
export const mapsAccountId = example.then(example => example.id);

Using GetAccount

function getAccount(args: GetAccountArgs, opts?: InvokeOptions): Promise<GetAccountResult>
function  get_account(name=None, resource_group_name=None, tags=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

Specifies the name of the Maps Account.

ResourceGroupName string

Specifies the name of the Resource Group in which the Maps Account is located.

Tags Dictionary<string, string>
Name string

Specifies the name of the Maps Account.

ResourceGroupName string

Specifies the name of the Resource Group in which the Maps Account is located.

Tags map[string]string
name string

Specifies the name of the Maps Account.

resourceGroupName string

Specifies the name of the Resource Group in which the Maps Account is located.

tags {[key: string]: string}
name str

Specifies the name of the Maps Account.

resource_group_name str

Specifies the name of the Resource Group in which the Maps Account is located.

tags Dict[str, str]

GetAccount Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

Name string
PrimaryAccessKey string

The primary key used to authenticate and authorize access to the Maps REST APIs.

ResourceGroupName string
SecondaryAccessKey string

The primary key used to authenticate and authorize access to the Maps REST APIs. The second key is given to provide seamless key regeneration.

SkuName string

The sku of the Azure Maps Account.

XMsClientId string

A unique identifier for the Maps Account.

Tags Dictionary<string, string>
Id string

The provider-assigned unique ID for this managed resource.

Name string
PrimaryAccessKey string

The primary key used to authenticate and authorize access to the Maps REST APIs.

ResourceGroupName string
SecondaryAccessKey string

The primary key used to authenticate and authorize access to the Maps REST APIs. The second key is given to provide seamless key regeneration.

SkuName string

The sku of the Azure Maps Account.

XMsClientId string

A unique identifier for the Maps Account.

Tags map[string]string
id string

The provider-assigned unique ID for this managed resource.

name string
primaryAccessKey string

The primary key used to authenticate and authorize access to the Maps REST APIs.

resourceGroupName string
secondaryAccessKey string

The primary key used to authenticate and authorize access to the Maps REST APIs. The second key is given to provide seamless key regeneration.

skuName string

The sku of the Azure Maps Account.

xMsClientId string

A unique identifier for the Maps Account.

tags {[key: string]: string}
id str

The provider-assigned unique ID for this managed resource.

name str
primary_access_key str

The primary key used to authenticate and authorize access to the Maps REST APIs.

resource_group_name str
secondary_access_key str

The primary key used to authenticate and authorize access to the Maps REST APIs. The second key is given to provide seamless key regeneration.

sku_name str

The sku of the Azure Maps Account.

x_ms_client_id str

A unique identifier for the Maps Account.

tags Dict[str, str]

Package Details

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