We recommend using Azure Native.
Azure Classic v5.81.0 published on Monday, Jun 24, 2024 by Pulumi
azure.core.getUserAssignedIdentity
Explore with Pulumi AI
Deprecated: azure.core.getUserAssignedIdentity has been deprecated in favor of azure.authorization.getUserAssignedIdentity
Use this data source to access information about an existing User Assigned Identity.
Example Usage
Reference An Existing)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.authorization.getUserAssignedIdentity({
    name: "name_of_user_assigned_identity",
    resourceGroupName: "name_of_resource_group",
});
export const uaiClientId = example.then(example => example.clientId);
export const uaiPrincipalId = example.then(example => example.principalId);
export const uaiTenantId = example.then(example => example.tenantId);
import pulumi
import pulumi_azure as azure
example = azure.authorization.get_user_assigned_identity(name="name_of_user_assigned_identity",
    resource_group_name="name_of_resource_group")
pulumi.export("uaiClientId", example.client_id)
pulumi.export("uaiPrincipalId", example.principal_id)
pulumi.export("uaiTenantId", example.tenant_id)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := authorization.LookupUserAssignedIdentity(ctx, &authorization.LookupUserAssignedIdentityArgs{
			Name:              "name_of_user_assigned_identity",
			ResourceGroupName: "name_of_resource_group",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("uaiClientId", example.ClientId)
		ctx.Export("uaiPrincipalId", example.PrincipalId)
		ctx.Export("uaiTenantId", example.TenantId)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = Azure.Authorization.GetUserAssignedIdentity.Invoke(new()
    {
        Name = "name_of_user_assigned_identity",
        ResourceGroupName = "name_of_resource_group",
    });
    return new Dictionary<string, object?>
    {
        ["uaiClientId"] = example.Apply(getUserAssignedIdentityResult => getUserAssignedIdentityResult.ClientId),
        ["uaiPrincipalId"] = example.Apply(getUserAssignedIdentityResult => getUserAssignedIdentityResult.PrincipalId),
        ["uaiTenantId"] = example.Apply(getUserAssignedIdentityResult => getUserAssignedIdentityResult.TenantId),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.authorization.AuthorizationFunctions;
import com.pulumi.azure.authorization.inputs.GetUserAssignedIdentityArgs;
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) {
        final var example = AuthorizationFunctions.getUserAssignedIdentity(GetUserAssignedIdentityArgs.builder()
            .name("name_of_user_assigned_identity")
            .resourceGroupName("name_of_resource_group")
            .build());
        ctx.export("uaiClientId", example.applyValue(getUserAssignedIdentityResult -> getUserAssignedIdentityResult.clientId()));
        ctx.export("uaiPrincipalId", example.applyValue(getUserAssignedIdentityResult -> getUserAssignedIdentityResult.principalId()));
        ctx.export("uaiTenantId", example.applyValue(getUserAssignedIdentityResult -> getUserAssignedIdentityResult.tenantId()));
    }
}
variables:
  example:
    fn::invoke:
      Function: azure:authorization:getUserAssignedIdentity
      Arguments:
        name: name_of_user_assigned_identity
        resourceGroupName: name_of_resource_group
outputs:
  uaiClientId: ${example.clientId}
  uaiPrincipalId: ${example.principalId}
  uaiTenantId: ${example.tenantId}
Using getUserAssignedIdentity
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getUserAssignedIdentity(args: GetUserAssignedIdentityArgs, opts?: InvokeOptions): Promise<GetUserAssignedIdentityResult>
function getUserAssignedIdentityOutput(args: GetUserAssignedIdentityOutputArgs, opts?: InvokeOptions): Output<GetUserAssignedIdentityResult>def get_user_assigned_identity(name: Optional[str] = None,
                               resource_group_name: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetUserAssignedIdentityResult
def get_user_assigned_identity_output(name: Optional[pulumi.Input[str]] = None,
                               resource_group_name: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetUserAssignedIdentityResult]func GetUserAssignedIdentity(ctx *Context, args *GetUserAssignedIdentityArgs, opts ...InvokeOption) (*GetUserAssignedIdentityResult, error)
func GetUserAssignedIdentityOutput(ctx *Context, args *GetUserAssignedIdentityOutputArgs, opts ...InvokeOption) GetUserAssignedIdentityResultOutput> Note: This function is named GetUserAssignedIdentity in the Go SDK.
public static class GetUserAssignedIdentity 
{
    public static Task<GetUserAssignedIdentityResult> InvokeAsync(GetUserAssignedIdentityArgs args, InvokeOptions? opts = null)
    public static Output<GetUserAssignedIdentityResult> Invoke(GetUserAssignedIdentityInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetUserAssignedIdentityResult> getUserAssignedIdentity(GetUserAssignedIdentityArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: azure:core/getUserAssignedIdentity:getUserAssignedIdentity
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Name string
 - The name of the User Assigned Identity.
 - Resource
Group stringName  - The name of the Resource Group in which the User Assigned Identity exists.
 
- Name string
 - The name of the User Assigned Identity.
 - Resource
Group stringName  - The name of the Resource Group in which the User Assigned Identity exists.
 
- name String
 - The name of the User Assigned Identity.
 - resource
Group StringName  - The name of the Resource Group in which the User Assigned Identity exists.
 
- name string
 - The name of the User Assigned Identity.
 - resource
Group stringName  - The name of the Resource Group in which the User Assigned Identity exists.
 
- name str
 - The name of the User Assigned Identity.
 - resource_
group_ strname  - The name of the Resource Group in which the User Assigned Identity exists.
 
- name String
 - The name of the User Assigned Identity.
 - resource
Group StringName  - The name of the Resource Group in which the User Assigned Identity exists.
 
getUserAssignedIdentity Result
The following output properties are available:
- Client
Id string - The Client ID of the User Assigned Identity.
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Location string
 - The Azure location where the User Assigned Identity exists.
 - Name string
 - Principal
Id string - The Service Principal ID of the User Assigned Identity.
 - Resource
Group stringName  - Dictionary<string, string>
 - A mapping of tags assigned to the User Assigned Identity.
 - Tenant
Id string - The Tenant ID of the User Assigned Identity.
 
- Client
Id string - The Client ID of the User Assigned Identity.
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Location string
 - The Azure location where the User Assigned Identity exists.
 - Name string
 - Principal
Id string - The Service Principal ID of the User Assigned Identity.
 - Resource
Group stringName  - map[string]string
 - A mapping of tags assigned to the User Assigned Identity.
 - Tenant
Id string - The Tenant ID of the User Assigned Identity.
 
- client
Id String - The Client ID of the User Assigned Identity.
 - id String
 - The provider-assigned unique ID for this managed resource.
 - location String
 - The Azure location where the User Assigned Identity exists.
 - name String
 - principal
Id String - The Service Principal ID of the User Assigned Identity.
 - resource
Group StringName  - Map<String,String>
 - A mapping of tags assigned to the User Assigned Identity.
 - tenant
Id String - The Tenant ID of the User Assigned Identity.
 
- client
Id string - The Client ID of the User Assigned Identity.
 - id string
 - The provider-assigned unique ID for this managed resource.
 - location string
 - The Azure location where the User Assigned Identity exists.
 - name string
 - principal
Id string - The Service Principal ID of the User Assigned Identity.
 - resource
Group stringName  - {[key: string]: string}
 - A mapping of tags assigned to the User Assigned Identity.
 - tenant
Id string - The Tenant ID of the User Assigned Identity.
 
- client_
id str - The Client ID of the User Assigned Identity.
 - id str
 - The provider-assigned unique ID for this managed resource.
 - location str
 - The Azure location where the User Assigned Identity exists.
 - name str
 - principal_
id str - The Service Principal ID of the User Assigned Identity.
 - resource_
group_ strname  - Mapping[str, str]
 - A mapping of tags assigned to the User Assigned Identity.
 - tenant_
id str - The Tenant ID of the User Assigned Identity.
 
- client
Id String - The Client ID of the User Assigned Identity.
 - id String
 - The provider-assigned unique ID for this managed resource.
 - location String
 - The Azure location where the User Assigned Identity exists.
 - name String
 - principal
Id String - The Service Principal ID of the User Assigned Identity.
 - resource
Group StringName  - Map<String>
 - A mapping of tags assigned to the User Assigned Identity.
 - tenant
Id String - The Tenant ID of the User Assigned Identity.
 
Package Details
- Repository
 - Azure Classic pulumi/pulumi-azure
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
azurermTerraform Provider.