Try AWS Native preview for resources not in the classic version.
aws.ecr.getAuthorizationToken
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
The ECR Authorization Token data source allows the authorization token, proxy endpoint, token expiration date, user name and password to be retrieved for an ECR repository.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const token = aws.ecr.getAuthorizationToken({});
import pulumi
import pulumi_aws as aws
token = aws.ecr.get_authorization_token()
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ecr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ecr.GetAuthorizationToken(ctx, nil, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var token = Aws.Ecr.GetAuthorizationToken.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ecr.EcrFunctions;
import com.pulumi.aws.ecr.inputs.GetAuthorizationTokenArgs;
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 token = EcrFunctions.getAuthorizationToken();
}
}
variables:
token:
fn::invoke:
Function: aws:ecr:getAuthorizationToken
Arguments: {}
Using getAuthorizationToken
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 getAuthorizationToken(args: GetAuthorizationTokenArgs, opts?: InvokeOptions): Promise<GetAuthorizationTokenResult>
function getAuthorizationTokenOutput(args: GetAuthorizationTokenOutputArgs, opts?: InvokeOptions): Output<GetAuthorizationTokenResult>
def get_authorization_token(registry_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAuthorizationTokenResult
def get_authorization_token_output(registry_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAuthorizationTokenResult]
func GetAuthorizationToken(ctx *Context, args *GetAuthorizationTokenArgs, opts ...InvokeOption) (*GetAuthorizationTokenResult, error)
func GetAuthorizationTokenOutput(ctx *Context, args *GetAuthorizationTokenOutputArgs, opts ...InvokeOption) GetAuthorizationTokenResultOutput
> Note: This function is named GetAuthorizationToken
in the Go SDK.
public static class GetAuthorizationToken
{
public static Task<GetAuthorizationTokenResult> InvokeAsync(GetAuthorizationTokenArgs args, InvokeOptions? opts = null)
public static Output<GetAuthorizationTokenResult> Invoke(GetAuthorizationTokenInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAuthorizationTokenResult> getAuthorizationToken(GetAuthorizationTokenArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:ecr/getAuthorizationToken:getAuthorizationToken
arguments:
# arguments dictionary
The following arguments are supported:
- Registry
Id string - AWS account ID of the ECR Repository. If not specified the default account is assumed.
- Registry
Id string - AWS account ID of the ECR Repository. If not specified the default account is assumed.
- registry
Id String - AWS account ID of the ECR Repository. If not specified the default account is assumed.
- registry
Id string - AWS account ID of the ECR Repository. If not specified the default account is assumed.
- registry_
id str - AWS account ID of the ECR Repository. If not specified the default account is assumed.
- registry
Id String - AWS account ID of the ECR Repository. If not specified the default account is assumed.
getAuthorizationToken Result
The following output properties are available:
- string
- Temporary IAM authentication credentials to access the ECR repository encoded in base64 in the form of
user_name:password
. - Expires
At string - Time in UTC RFC3339 format when the authorization token expires.
- Id string
- The provider-assigned unique ID for this managed resource.
- Password string
- Password decoded from the authorization token.
- Proxy
Endpoint string - Registry URL to use in the docker login command.
- User
Name string - User name decoded from the authorization token.
- Registry
Id string
- string
- Temporary IAM authentication credentials to access the ECR repository encoded in base64 in the form of
user_name:password
. - Expires
At string - Time in UTC RFC3339 format when the authorization token expires.
- Id string
- The provider-assigned unique ID for this managed resource.
- Password string
- Password decoded from the authorization token.
- Proxy
Endpoint string - Registry URL to use in the docker login command.
- User
Name string - User name decoded from the authorization token.
- Registry
Id string
- String
- Temporary IAM authentication credentials to access the ECR repository encoded in base64 in the form of
user_name:password
. - expires
At String - Time in UTC RFC3339 format when the authorization token expires.
- id String
- The provider-assigned unique ID for this managed resource.
- password String
- Password decoded from the authorization token.
- proxy
Endpoint String - Registry URL to use in the docker login command.
- user
Name String - User name decoded from the authorization token.
- registry
Id String
- string
- Temporary IAM authentication credentials to access the ECR repository encoded in base64 in the form of
user_name:password
. - expires
At string - Time in UTC RFC3339 format when the authorization token expires.
- id string
- The provider-assigned unique ID for this managed resource.
- password string
- Password decoded from the authorization token.
- proxy
Endpoint string - Registry URL to use in the docker login command.
- user
Name string - User name decoded from the authorization token.
- registry
Id string
- str
- Temporary IAM authentication credentials to access the ECR repository encoded in base64 in the form of
user_name:password
. - expires_
at str - Time in UTC RFC3339 format when the authorization token expires.
- id str
- The provider-assigned unique ID for this managed resource.
- password str
- Password decoded from the authorization token.
- proxy_
endpoint str - Registry URL to use in the docker login command.
- user_
name str - User name decoded from the authorization token.
- registry_
id str
- String
- Temporary IAM authentication credentials to access the ECR repository encoded in base64 in the form of
user_name:password
. - expires
At String - Time in UTC RFC3339 format when the authorization token expires.
- id String
- The provider-assigned unique ID for this managed resource.
- password String
- Password decoded from the authorization token.
- proxy
Endpoint String - Registry URL to use in the docker login command.
- user
Name String - User name decoded from the authorization token.
- registry
Id String
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.