1. Packages
  2. DigitalOcean
  3. API Docs
  4. ContainerRegistryDockerCredentials
DigitalOcean v4.27.0 published on Wednesday, Mar 13, 2024 by Pulumi

digitalocean.ContainerRegistryDockerCredentials

Explore with Pulumi AI

digitalocean logo
DigitalOcean v4.27.0 published on Wednesday, Mar 13, 2024 by Pulumi

    Get Docker credentials for your DigitalOcean container registry.

    An error is triggered if the provided container registry name does not exist.

    Example Usage

    Basic Example

    Get the container registry:

    import * as pulumi from "@pulumi/pulumi";
    import * as digitalocean from "@pulumi/digitalocean";
    
    const example = new digitalocean.ContainerRegistryDockerCredentials("example", {registryName: "example"});
    
    import pulumi
    import pulumi_digitalocean as digitalocean
    
    example = digitalocean.ContainerRegistryDockerCredentials("example", registry_name="example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := digitalocean.NewContainerRegistryDockerCredentials(ctx, "example", &digitalocean.ContainerRegistryDockerCredentialsArgs{
    			RegistryName: pulumi.String("example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DigitalOcean = Pulumi.DigitalOcean;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new DigitalOcean.ContainerRegistryDockerCredentials("example", new()
        {
            RegistryName = "example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.digitalocean.ContainerRegistryDockerCredentials;
    import com.pulumi.digitalocean.ContainerRegistryDockerCredentialsArgs;
    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) {
            var example = new ContainerRegistryDockerCredentials("example", ContainerRegistryDockerCredentialsArgs.builder()        
                .registryName("example")
                .build());
    
        }
    }
    
    resources:
      example:
        type: digitalocean:ContainerRegistryDockerCredentials
        properties:
          registryName: example
    

    Docker Provider Example

    Use the endpoint and docker_credentials with the Docker provider:

    import * as pulumi from "@pulumi/pulumi";
    import * as digitalocean from "@pulumi/digitalocean";
    
    const exampleContainerRegistry = digitalocean.getContainerRegistry({
        name: "example",
    });
    const exampleContainerRegistryDockerCredentials = new digitalocean.ContainerRegistryDockerCredentials("exampleContainerRegistryDockerCredentials", {registryName: "example"});
    
    import pulumi
    import pulumi_digitalocean as digitalocean
    
    example_container_registry = digitalocean.get_container_registry(name="example")
    example_container_registry_docker_credentials = digitalocean.ContainerRegistryDockerCredentials("exampleContainerRegistryDockerCredentials", registry_name="example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := digitalocean.LookupContainerRegistry(ctx, &digitalocean.LookupContainerRegistryArgs{
    			Name: "example",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = digitalocean.NewContainerRegistryDockerCredentials(ctx, "exampleContainerRegistryDockerCredentials", &digitalocean.ContainerRegistryDockerCredentialsArgs{
    			RegistryName: pulumi.String("example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DigitalOcean = Pulumi.DigitalOcean;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleContainerRegistry = DigitalOcean.GetContainerRegistry.Invoke(new()
        {
            Name = "example",
        });
    
        var exampleContainerRegistryDockerCredentials = new DigitalOcean.ContainerRegistryDockerCredentials("exampleContainerRegistryDockerCredentials", new()
        {
            RegistryName = "example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.digitalocean.DigitaloceanFunctions;
    import com.pulumi.digitalocean.inputs.GetContainerRegistryArgs;
    import com.pulumi.digitalocean.ContainerRegistryDockerCredentials;
    import com.pulumi.digitalocean.ContainerRegistryDockerCredentialsArgs;
    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 exampleContainerRegistry = DigitaloceanFunctions.getContainerRegistry(GetContainerRegistryArgs.builder()
                .name("example")
                .build());
    
            var exampleContainerRegistryDockerCredentials = new ContainerRegistryDockerCredentials("exampleContainerRegistryDockerCredentials", ContainerRegistryDockerCredentialsArgs.builder()        
                .registryName("example")
                .build());
    
        }
    }
    
    resources:
      exampleContainerRegistryDockerCredentials:
        type: digitalocean:ContainerRegistryDockerCredentials
        properties:
          registryName: example
    variables:
      exampleContainerRegistry:
        fn::invoke:
          Function: digitalocean:getContainerRegistry
          Arguments:
            name: example
    

    Create ContainerRegistryDockerCredentials Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ContainerRegistryDockerCredentials(name: string, args: ContainerRegistryDockerCredentialsArgs, opts?: CustomResourceOptions);
    @overload
    def ContainerRegistryDockerCredentials(resource_name: str,
                                           args: ContainerRegistryDockerCredentialsArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ContainerRegistryDockerCredentials(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           registry_name: Optional[str] = None,
                                           expiry_seconds: Optional[int] = None,
                                           write: Optional[bool] = None)
    func NewContainerRegistryDockerCredentials(ctx *Context, name string, args ContainerRegistryDockerCredentialsArgs, opts ...ResourceOption) (*ContainerRegistryDockerCredentials, error)
    public ContainerRegistryDockerCredentials(string name, ContainerRegistryDockerCredentialsArgs args, CustomResourceOptions? opts = null)
    public ContainerRegistryDockerCredentials(String name, ContainerRegistryDockerCredentialsArgs args)
    public ContainerRegistryDockerCredentials(String name, ContainerRegistryDockerCredentialsArgs args, CustomResourceOptions options)
    
    type: digitalocean:ContainerRegistryDockerCredentials
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ContainerRegistryDockerCredentialsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ContainerRegistryDockerCredentialsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ContainerRegistryDockerCredentialsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContainerRegistryDockerCredentialsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContainerRegistryDockerCredentialsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var containerRegistryDockerCredentialsResource = new DigitalOcean.ContainerRegistryDockerCredentials("containerRegistryDockerCredentialsResource", new()
    {
        RegistryName = "string",
        ExpirySeconds = 0,
        Write = false,
    });
    
    example, err := digitalocean.NewContainerRegistryDockerCredentials(ctx, "containerRegistryDockerCredentialsResource", &digitalocean.ContainerRegistryDockerCredentialsArgs{
    	RegistryName:  pulumi.String("string"),
    	ExpirySeconds: pulumi.Int(0),
    	Write:         pulumi.Bool(false),
    })
    
    var containerRegistryDockerCredentialsResource = new ContainerRegistryDockerCredentials("containerRegistryDockerCredentialsResource", ContainerRegistryDockerCredentialsArgs.builder()        
        .registryName("string")
        .expirySeconds(0)
        .write(false)
        .build());
    
    container_registry_docker_credentials_resource = digitalocean.ContainerRegistryDockerCredentials("containerRegistryDockerCredentialsResource",
        registry_name="string",
        expiry_seconds=0,
        write=False)
    
    const containerRegistryDockerCredentialsResource = new digitalocean.ContainerRegistryDockerCredentials("containerRegistryDockerCredentialsResource", {
        registryName: "string",
        expirySeconds: 0,
        write: false,
    });
    
    type: digitalocean:ContainerRegistryDockerCredentials
    properties:
        expirySeconds: 0
        registryName: string
        write: false
    

    ContainerRegistryDockerCredentials Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ContainerRegistryDockerCredentials resource accepts the following input properties:

    RegistryName string
    The name of the container registry.
    ExpirySeconds int
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    Write bool
    Allow for write access to the container registry. Defaults to false.
    RegistryName string
    The name of the container registry.
    ExpirySeconds int
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    Write bool
    Allow for write access to the container registry. Defaults to false.
    registryName String
    The name of the container registry.
    expirySeconds Integer
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    write Boolean
    Allow for write access to the container registry. Defaults to false.
    registryName string
    The name of the container registry.
    expirySeconds number
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    write boolean
    Allow for write access to the container registry. Defaults to false.
    registry_name str
    The name of the container registry.
    expiry_seconds int
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    write bool
    Allow for write access to the container registry. Defaults to false.
    registryName String
    The name of the container registry.
    expirySeconds Number
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    write Boolean
    Allow for write access to the container registry. Defaults to false.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ContainerRegistryDockerCredentials resource produces the following output properties:

    CredentialExpirationTime string
    The date and time the registry access token will expire.
    DockerCredentials string
    Credentials for the container registry.
    Id string
    The provider-assigned unique ID for this managed resource.
    CredentialExpirationTime string
    The date and time the registry access token will expire.
    DockerCredentials string
    Credentials for the container registry.
    Id string
    The provider-assigned unique ID for this managed resource.
    credentialExpirationTime String
    The date and time the registry access token will expire.
    dockerCredentials String
    Credentials for the container registry.
    id String
    The provider-assigned unique ID for this managed resource.
    credentialExpirationTime string
    The date and time the registry access token will expire.
    dockerCredentials string
    Credentials for the container registry.
    id string
    The provider-assigned unique ID for this managed resource.
    credential_expiration_time str
    The date and time the registry access token will expire.
    docker_credentials str
    Credentials for the container registry.
    id str
    The provider-assigned unique ID for this managed resource.
    credentialExpirationTime String
    The date and time the registry access token will expire.
    dockerCredentials String
    Credentials for the container registry.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ContainerRegistryDockerCredentials Resource

    Get an existing ContainerRegistryDockerCredentials resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ContainerRegistryDockerCredentialsState, opts?: CustomResourceOptions): ContainerRegistryDockerCredentials
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            credential_expiration_time: Optional[str] = None,
            docker_credentials: Optional[str] = None,
            expiry_seconds: Optional[int] = None,
            registry_name: Optional[str] = None,
            write: Optional[bool] = None) -> ContainerRegistryDockerCredentials
    func GetContainerRegistryDockerCredentials(ctx *Context, name string, id IDInput, state *ContainerRegistryDockerCredentialsState, opts ...ResourceOption) (*ContainerRegistryDockerCredentials, error)
    public static ContainerRegistryDockerCredentials Get(string name, Input<string> id, ContainerRegistryDockerCredentialsState? state, CustomResourceOptions? opts = null)
    public static ContainerRegistryDockerCredentials get(String name, Output<String> id, ContainerRegistryDockerCredentialsState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CredentialExpirationTime string
    The date and time the registry access token will expire.
    DockerCredentials string
    Credentials for the container registry.
    ExpirySeconds int
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    RegistryName string
    The name of the container registry.
    Write bool
    Allow for write access to the container registry. Defaults to false.
    CredentialExpirationTime string
    The date and time the registry access token will expire.
    DockerCredentials string
    Credentials for the container registry.
    ExpirySeconds int
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    RegistryName string
    The name of the container registry.
    Write bool
    Allow for write access to the container registry. Defaults to false.
    credentialExpirationTime String
    The date and time the registry access token will expire.
    dockerCredentials String
    Credentials for the container registry.
    expirySeconds Integer
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    registryName String
    The name of the container registry.
    write Boolean
    Allow for write access to the container registry. Defaults to false.
    credentialExpirationTime string
    The date and time the registry access token will expire.
    dockerCredentials string
    Credentials for the container registry.
    expirySeconds number
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    registryName string
    The name of the container registry.
    write boolean
    Allow for write access to the container registry. Defaults to false.
    credential_expiration_time str
    The date and time the registry access token will expire.
    docker_credentials str
    Credentials for the container registry.
    expiry_seconds int
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    registry_name str
    The name of the container registry.
    write bool
    Allow for write access to the container registry. Defaults to false.
    credentialExpirationTime String
    The date and time the registry access token will expire.
    dockerCredentials String
    Credentials for the container registry.
    expirySeconds Number
    The amount of time to pass before the Docker credentials expire in seconds. Defaults to 1576800000, or roughly 50 years. Must be greater than 0 and less than 1576800000.
    registryName String
    The name of the container registry.
    write Boolean
    Allow for write access to the container registry. Defaults to false.

    Package Details

    Repository
    DigitalOcean pulumi/pulumi-digitalocean
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the digitalocean Terraform Provider.
    digitalocean logo
    DigitalOcean v4.27.0 published on Wednesday, Mar 13, 2024 by Pulumi