1. Packages
  2. Astra DB
  3. API Docs
  4. Token
Astra DB v1.0.42 published on Tuesday, Jun 6, 2023 by pulumiverse

astra.Token

Explore with Pulumi AI

astra logo
Astra DB v1.0.42 published on Tuesday, Jun 6, 2023 by pulumiverse

    astra.Token resource represents a token with a specific role assigned.

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Astra = Pulumiverse.Astra;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Astra.Token("example", new()
        {
            Roles = new[]
            {
                "a8cd363d-5069-4a2b-86d8-0578139812ac",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-astra/sdk/go/astra"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := astra.NewToken(ctx, "example", &astra.TokenArgs{
    			Roles: pulumi.StringArray{
    				pulumi.String("a8cd363d-5069-4a2b-86d8-0578139812ac"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.astra.Token;
    import com.pulumi.astra.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 example = new Token("example", TokenArgs.builder()        
                .roles("a8cd363d-5069-4a2b-86d8-0578139812ac")
                .build());
    
        }
    }
    
    import pulumi
    import pulumiverse_astra as astra
    
    example = astra.Token("example", roles=["a8cd363d-5069-4a2b-86d8-0578139812ac"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as astra from "@pulumi/astra";
    
    const example = new astra.Token("example", {
        roles: ["a8cd363d-5069-4a2b-86d8-0578139812ac"],
    });
    
    resources:
      example:
        type: astra:Token
        properties:
          roles:
            - a8cd363d-5069-4a2b-86d8-0578139812ac
    

    Create Token Resource

    new Token(name: string, args: TokenArgs, opts?: CustomResourceOptions);
    @overload
    def Token(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              roles: Optional[Sequence[str]] = None)
    @overload
    def Token(resource_name: str,
              args: TokenArgs,
              opts: Optional[ResourceOptions] = None)
    func NewToken(ctx *Context, name string, args TokenArgs, opts ...ResourceOption) (*Token, error)
    public Token(string name, TokenArgs args, CustomResourceOptions? opts = null)
    public Token(String name, TokenArgs args)
    public Token(String name, TokenArgs args, CustomResourceOptions options)
    
    type: astra:Token
    properties: # The arguments to resource properties.
    options: # 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.
    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.

    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

    The Token resource accepts the following input properties:

    Roles List<string>
    List of Role IDs to be assigned to the generated token
    Roles []string
    List of Role IDs to be assigned to the generated token
    roles List<String>
    List of Role IDs to be assigned to the generated token
    roles string[]
    List of Role IDs to be assigned to the generated token
    roles Sequence[str]
    List of Role IDs to be assigned to the generated token
    roles List<String>
    List of Role IDs to be assigned to the generated token

    Outputs

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

    AstraToken string
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    ClientId string
    Client id, use as username in cql to connect
    Id string
    The provider-assigned unique ID for this managed resource.
    Secret string
    Secret, use as password in cql to connect
    ClientId string
    Client id, use as username in cql to connect
    Id string
    The provider-assigned unique ID for this managed resource.
    Secret string
    Secret, use as password in cql to connect
    Token string
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    clientId String
    Client id, use as username in cql to connect
    id String
    The provider-assigned unique ID for this managed resource.
    secret String
    Secret, use as password in cql to connect
    token String
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    clientId string
    Client id, use as username in cql to connect
    id string
    The provider-assigned unique ID for this managed resource.
    secret string
    Secret, use as password in cql to connect
    token string
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    client_id str
    Client id, use as username in cql to connect
    id str
    The provider-assigned unique ID for this managed resource.
    secret str
    Secret, use as password in cql to connect
    token str
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    clientId String
    Client id, use as username in cql to connect
    id String
    The provider-assigned unique ID for this managed resource.
    secret String
    Secret, use as password in cql to connect
    token String
    Token, use as auth bearer for API calls or as password in combination with the word token in cql

    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,
            client_id: Optional[str] = None,
            roles: Optional[Sequence[str]] = None,
            secret: Optional[str] = None,
            token: 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)
    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:
    AstraToken string
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    ClientId string
    Client id, use as username in cql to connect
    Roles List<string>
    List of Role IDs to be assigned to the generated token
    Secret string
    Secret, use as password in cql to connect
    ClientId string
    Client id, use as username in cql to connect
    Roles []string
    List of Role IDs to be assigned to the generated token
    Secret string
    Secret, use as password in cql to connect
    Token string
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    clientId String
    Client id, use as username in cql to connect
    roles List<String>
    List of Role IDs to be assigned to the generated token
    secret String
    Secret, use as password in cql to connect
    token String
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    clientId string
    Client id, use as username in cql to connect
    roles string[]
    List of Role IDs to be assigned to the generated token
    secret string
    Secret, use as password in cql to connect
    token string
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    client_id str
    Client id, use as username in cql to connect
    roles Sequence[str]
    List of Role IDs to be assigned to the generated token
    secret str
    Secret, use as password in cql to connect
    token str
    Token, use as auth bearer for API calls or as password in combination with the word token in cql
    clientId String
    Client id, use as username in cql to connect
    roles List<String>
    List of Role IDs to be assigned to the generated token
    secret String
    Secret, use as password in cql to connect
    token String
    Token, use as auth bearer for API calls or as password in combination with the word token in cql

    Import

     $ pulumi import astra:index/token:Token example client-secret
    

    Package Details

    Repository
    astra pulumiverse/pulumi-astra
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the astra Terraform Provider.
    astra logo
    Astra DB v1.0.42 published on Tuesday, Jun 6, 2023 by pulumiverse