1. Packages
  2. Scaleway
  3. API Docs
  4. containers
  5. Token
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

scaleway.containers.Token

Explore with Pulumi AI

scaleway logo
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

    The scaleway.containers.Token resource allows you to create and manage authentication tokens for Scaleway Serverless Containers.

    Refer to the Containers tokens documentation and API documentation for more information.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.containers.Namespace("main", {name: "test-container-token-ns"});
    const mainContainer = new scaleway.containers.Container("main", {namespaceId: main.id});
    // Namespace Token
    const namespace = new scaleway.containers.Token("namespace", {
        namespaceId: main.id,
        expiresAt: "2022-10-18T11:35:15+02:00",
    });
    // Container Token
    const container = new scaleway.containers.Token("container", {containerId: mainContainer.id});
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.containers.Namespace("main", name="test-container-token-ns")
    main_container = scaleway.containers.Container("main", namespace_id=main.id)
    # Namespace Token
    namespace = scaleway.containers.Token("namespace",
        namespace_id=main.id,
        expires_at="2022-10-18T11:35:15+02:00")
    # Container Token
    container = scaleway.containers.Token("container", container_id=main_container.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/containers"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		main, err := containers.NewNamespace(ctx, "main", &containers.NamespaceArgs{
    			Name: pulumi.String("test-container-token-ns"),
    		})
    		if err != nil {
    			return err
    		}
    		mainContainer, err := containers.NewContainer(ctx, "main", &containers.ContainerArgs{
    			NamespaceId: main.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		// Namespace Token
    		_, err = containers.NewToken(ctx, "namespace", &containers.TokenArgs{
    			NamespaceId: main.ID(),
    			ExpiresAt:   pulumi.String("2022-10-18T11:35:15+02:00"),
    		})
    		if err != nil {
    			return err
    		}
    		// Container Token
    		_, err = containers.NewToken(ctx, "container", &containers.TokenArgs{
    			ContainerId: mainContainer.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var main = new Scaleway.Containers.Namespace("main", new()
        {
            Name = "test-container-token-ns",
        });
    
        var mainContainer = new Scaleway.Containers.Container("main", new()
        {
            NamespaceId = main.Id,
        });
    
        // Namespace Token
        var @namespace = new Scaleway.Containers.Token("namespace", new()
        {
            NamespaceId = main.Id,
            ExpiresAt = "2022-10-18T11:35:15+02:00",
        });
    
        // Container Token
        var container = new Scaleway.Containers.Token("container", new()
        {
            ContainerId = mainContainer.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.containers.Namespace;
    import com.pulumi.scaleway.containers.NamespaceArgs;
    import com.pulumi.scaleway.containers.Container;
    import com.pulumi.scaleway.containers.ContainerArgs;
    import com.pulumi.scaleway.containers.Token;
    import com.pulumi.scaleway.containers.TokenArgs;
    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 main = new Namespace("main", NamespaceArgs.builder()
                .name("test-container-token-ns")
                .build());
    
            var mainContainer = new Container("mainContainer", ContainerArgs.builder()
                .namespaceId(main.id())
                .build());
    
            // Namespace Token
            var namespace = new Token("namespace", TokenArgs.builder()
                .namespaceId(main.id())
                .expiresAt("2022-10-18T11:35:15+02:00")
                .build());
    
            // Container Token
            var container = new Token("container", TokenArgs.builder()
                .containerId(mainContainer.id())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:containers:Namespace
        properties:
          name: test-container-token-ns
      mainContainer:
        type: scaleway:containers:Container
        name: main
        properties:
          namespaceId: ${main.id}
      # Namespace Token
      namespace:
        type: scaleway:containers:Token
        properties:
          namespaceId: ${main.id}
          expiresAt: 2022-10-18T11:35:15+02:00
      # Container Token
      container:
        type: scaleway:containers:Token
        properties:
          containerId: ${mainContainer.id}
    

    Create Token Resource

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

    Constructor syntax

    new Token(name: string, args?: TokenArgs, opts?: CustomResourceOptions);
    @overload
    def Token(resource_name: str,
              args: Optional[TokenArgs] = None,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Token(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              container_id: Optional[str] = None,
              description: Optional[str] = None,
              expires_at: Optional[str] = None,
              namespace_id: Optional[str] = None,
              region: Optional[str] = None)
    func NewToken(ctx *Context, name string, args *TokenArgs, opts ...ResourceOption) (*Token, error)
    public Token(string name, TokenArgs? args = null, CustomResourceOptions? opts = null)
    public Token(String name, TokenArgs args)
    public Token(String name, TokenArgs args, CustomResourceOptions options)
    
    type: scaleway:containers:Token
    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 TokenArgs
    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 TokenArgs
    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 TokenArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TokenArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TokenArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var tokenResource = new Scaleway.Containers.Token("tokenResource", new()
    {
        ContainerId = "string",
        Description = "string",
        ExpiresAt = "string",
        NamespaceId = "string",
        Region = "string",
    });
    
    example, err := containers.NewToken(ctx, "tokenResource", &containers.TokenArgs{
    	ContainerId: pulumi.String("string"),
    	Description: pulumi.String("string"),
    	ExpiresAt:   pulumi.String("string"),
    	NamespaceId: pulumi.String("string"),
    	Region:      pulumi.String("string"),
    })
    
    var tokenResource = new Token("tokenResource", TokenArgs.builder()
        .containerId("string")
        .description("string")
        .expiresAt("string")
        .namespaceId("string")
        .region("string")
        .build());
    
    token_resource = scaleway.containers.Token("tokenResource",
        container_id="string",
        description="string",
        expires_at="string",
        namespace_id="string",
        region="string")
    
    const tokenResource = new scaleway.containers.Token("tokenResource", {
        containerId: "string",
        description: "string",
        expiresAt: "string",
        namespaceId: "string",
        region: "string",
    });
    
    type: scaleway:containers:Token
    properties:
        containerId: string
        description: string
        expiresAt: string
        namespaceId: string
        region: string
    

    Token Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Token resource accepts the following input properties:

    ContainerId string

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    Description string
    The description of the token.
    ExpiresAt string
    The expiration date of the token.
    NamespaceId string
    The unique identifier of the Containers namespace.
    Region string

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    ContainerId string

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    Description string
    The description of the token.
    ExpiresAt string
    The expiration date of the token.
    NamespaceId string
    The unique identifier of the Containers namespace.
    Region string

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    containerId String

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description String
    The description of the token.
    expiresAt String
    The expiration date of the token.
    namespaceId String
    The unique identifier of the Containers namespace.
    region String

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    containerId string

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description string
    The description of the token.
    expiresAt string
    The expiration date of the token.
    namespaceId string
    The unique identifier of the Containers namespace.
    region string

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    container_id str

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description str
    The description of the token.
    expires_at str
    The expiration date of the token.
    namespace_id str
    The unique identifier of the Containers namespace.
    region str

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    containerId String

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description String
    The description of the token.
    expiresAt String
    The expiration date of the token.
    namespaceId String
    The unique identifier of the Containers namespace.
    region String

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Value string
    The token.
    Id string
    The provider-assigned unique ID for this managed resource.
    Value string
    The token.
    id String
    The provider-assigned unique ID for this managed resource.
    value String
    The token.
    id string
    The provider-assigned unique ID for this managed resource.
    value string
    The token.
    id str
    The provider-assigned unique ID for this managed resource.
    value str
    The token.
    id String
    The provider-assigned unique ID for this managed resource.
    value String
    The token.

    Look up Existing Token Resource

    Get an existing Token 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?: TokenState, opts?: CustomResourceOptions): Token
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            container_id: Optional[str] = None,
            description: Optional[str] = None,
            expires_at: Optional[str] = None,
            namespace_id: Optional[str] = None,
            region: Optional[str] = None,
            value: Optional[str] = None) -> Token
    func GetToken(ctx *Context, name string, id IDInput, state *TokenState, opts ...ResourceOption) (*Token, error)
    public static Token Get(string name, Input<string> id, TokenState? state, CustomResourceOptions? opts = null)
    public static Token get(String name, Output<String> id, TokenState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:containers:Token    get:      id: ${id}
    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:
    ContainerId string

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    Description string
    The description of the token.
    ExpiresAt string
    The expiration date of the token.
    NamespaceId string
    The unique identifier of the Containers namespace.
    Region string

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    Value string
    The token.
    ContainerId string

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    Description string
    The description of the token.
    ExpiresAt string
    The expiration date of the token.
    NamespaceId string
    The unique identifier of the Containers namespace.
    Region string

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    Value string
    The token.
    containerId String

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description String
    The description of the token.
    expiresAt String
    The expiration date of the token.
    namespaceId String
    The unique identifier of the Containers namespace.
    region String

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    value String
    The token.
    containerId string

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description string
    The description of the token.
    expiresAt string
    The expiration date of the token.
    namespaceId string
    The unique identifier of the Containers namespace.
    region string

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    value string
    The token.
    container_id str

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description str
    The description of the token.
    expires_at str
    The expiration date of the token.
    namespace_id str
    The unique identifier of the Containers namespace.
    region str

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    value str
    The token.
    containerId String

    The unique identifier of the container.

    Only one of namespace_id or container_id must be set.

    description String
    The description of the token.
    expiresAt String
    The expiration date of the token.
    namespaceId String
    The unique identifier of the Containers namespace.
    region String

    region). The region in which the namespace is created.

    Important Updating any of the arguments above will recreate the token.

    value String
    The token.

    Import

    Tokens can be imported using {region}/{id}, as shown below:

    bash

    $ pulumi import scaleway:containers/token:Token main fr-par/11111111-1111-1111-1111-111111111111
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse