getCallerIdentity

Use this data source to get the access to the effective Account ID, User ID, and ARN in which this provider is authorized.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const current = aws.getCallerIdentity({});
export const accountId = current.then(current => current.accountId);
export const callerArn = current.then(current => current.arn);
export const callerUser = current.then(current => current.userId);
import pulumi
import pulumi_aws as aws
current = aws.get_caller_identity()
pulumi.export("accountId", current.account_id)
pulumi.export("callerArn", current.arn)
pulumi.export("callerUser", current.user_id)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var current = Aws.GetCallerIdentity.Invoke();
return new Dictionary<string, object?>
{
["accountId"] = current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId),
["callerArn"] = current.Apply(getCallerIdentityResult => getCallerIdentityResult.Arn),
["callerUser"] = current.Apply(getCallerIdentityResult => getCallerIdentityResult.UserId),
};
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
current, err := aws.GetCallerIdentity(ctx, &aws.GetCallerIdentityArgs{}, nil)
if err != nil {
return err
}
ctx.Export("accountId", current.AccountId)
ctx.Export("callerArn", current.Arn)
ctx.Export("callerUser", current.UserId)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.AwsFunctions;
import com.pulumi.aws.inputs.GetCallerIdentityArgs;
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 current = AwsFunctions.getCallerIdentity();
ctx.export("accountId", current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId()));
ctx.export("callerArn", current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.arn()));
ctx.export("callerUser", current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.userId()));
}
}
variables:
current:
fn::invoke:
function: aws:getCallerIdentity
arguments: {}
outputs:
accountId: ${current.accountId}
callerArn: ${current.arn}
callerUser: ${current.userId}

Return

A collection of values returned by getCallerIdentity.

Parameters

argument

A collection of arguments for invoking getCallerIdentity.


Return

A collection of values returned by getCallerIdentity.

Parameters

id

Account ID number of the account that owns or contains the calling entity.

See also


Return

A collection of values returned by getCallerIdentity.

Parameters

argument

Builder for com.pulumi.aws.kotlin.inputs.GetCallerIdentityPlainArgs.

See also