1. Packages
  2. Rancher2 Provider
  3. API Docs
  4. CustomUserToken
Rancher 2 v9.0.0 published on Wednesday, Apr 16, 2025 by Pulumi

rancher2.CustomUserToken

Explore with Pulumi AI

Provides a Rancher v2 Token resource, specifically to create tokens for custom users (i.e. not the ‘admin’ user configured with the provider config). Custom user tokens can f.e. be used as service account tokens with the Rancher v2 API having limited permissions. To create a custom user token the username/password for the Rancher User must be known.

There are 2 kind of tokens:

  • not scoped: valid for global system.
  • scoped: valid for just a specific cluster (cluster_id should be provided).

Tokens can only be created for a Rancher User with at least the user-base global role binding in order to enable user login.

Tokens can’t be updated once created. Any diff in token data will recreate the token. If any token expire, Rancher2 provider will generate a diff to regenerate it.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";

// Create a rancher2 Token
const foo = new rancher2.User("foo", {
    name: "foo",
    username: "foo",
    password: "changeme",
    enabled: true,
});
const foo_login = new rancher2.GlobalRoleBinding("foo-login", {
    name: "foo-login-binding",
    globalRoleId: "user-base",
    userId: foo.id,
});
const fooCustomUserToken = new rancher2.CustomUserToken("foo", {
    username: foo.username,
    password: foo.password,
    description: "foo token",
    ttl: 0,
}, {
    dependsOn: [foo_login],
});
Copy
import pulumi
import pulumi_rancher2 as rancher2

# Create a rancher2 Token
foo = rancher2.User("foo",
    name="foo",
    username="foo",
    password="changeme",
    enabled=True)
foo_login = rancher2.GlobalRoleBinding("foo-login",
    name="foo-login-binding",
    global_role_id="user-base",
    user_id=foo.id)
foo_custom_user_token = rancher2.CustomUserToken("foo",
    username=foo.username,
    password=foo.password,
    description="foo token",
    ttl=0,
    opts = pulumi.ResourceOptions(depends_on=[foo_login]))
Copy
package main

import (
	"github.com/pulumi/pulumi-rancher2/sdk/v9/go/rancher2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// Create a rancher2 Token
		foo, err := rancher2.NewUser(ctx, "foo", &rancher2.UserArgs{
			Name:     pulumi.String("foo"),
			Username: pulumi.String("foo"),
			Password: pulumi.String("changeme"),
			Enabled:  pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		foo_login, err := rancher2.NewGlobalRoleBinding(ctx, "foo-login", &rancher2.GlobalRoleBindingArgs{
			Name:         pulumi.String("foo-login-binding"),
			GlobalRoleId: pulumi.String("user-base"),
			UserId:       foo.ID(),
		})
		if err != nil {
			return err
		}
		_, err = rancher2.NewCustomUserToken(ctx, "foo", &rancher2.CustomUserTokenArgs{
			Username:    foo.Username,
			Password:    foo.Password,
			Description: pulumi.String("foo token"),
			Ttl:         pulumi.Int(0),
		}, pulumi.DependsOn([]pulumi.Resource{
			foo_login,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rancher2 = Pulumi.Rancher2;

return await Deployment.RunAsync(() => 
{
    // Create a rancher2 Token
    var foo = new Rancher2.User("foo", new()
    {
        Name = "foo",
        Username = "foo",
        Password = "changeme",
        Enabled = true,
    });

    var foo_login = new Rancher2.GlobalRoleBinding("foo-login", new()
    {
        Name = "foo-login-binding",
        GlobalRoleId = "user-base",
        UserId = foo.Id,
    });

    var fooCustomUserToken = new Rancher2.CustomUserToken("foo", new()
    {
        Username = foo.Username,
        Password = foo.Password,
        Description = "foo token",
        Ttl = 0,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            foo_login,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rancher2.User;
import com.pulumi.rancher2.UserArgs;
import com.pulumi.rancher2.GlobalRoleBinding;
import com.pulumi.rancher2.GlobalRoleBindingArgs;
import com.pulumi.rancher2.CustomUserToken;
import com.pulumi.rancher2.CustomUserTokenArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
        // Create a rancher2 Token
        var foo = new User("foo", UserArgs.builder()
            .name("foo")
            .username("foo")
            .password("changeme")
            .enabled(true)
            .build());

        var foo_login = new GlobalRoleBinding("foo-login", GlobalRoleBindingArgs.builder()
            .name("foo-login-binding")
            .globalRoleId("user-base")
            .userId(foo.id())
            .build());

        var fooCustomUserToken = new CustomUserToken("fooCustomUserToken", CustomUserTokenArgs.builder()
            .username(foo.username())
            .password(foo.password())
            .description("foo token")
            .ttl(0)
            .build(), CustomResourceOptions.builder()
                .dependsOn(foo_login)
                .build());

    }
}
Copy
resources:
  # Create a rancher2 Token
  foo:
    type: rancher2:User
    properties:
      name: foo
      username: foo
      password: changeme
      enabled: true
  foo-login:
    type: rancher2:GlobalRoleBinding
    properties:
      name: foo-login-binding
      globalRoleId: user-base
      userId: ${foo.id}
  fooCustomUserToken:
    type: rancher2:CustomUserToken
    name: foo
    properties:
      username: ${foo.username}
      password: ${foo.password}
      description: foo token
      ttl: 0
    options:
      dependsOn:
        - ${["foo-login"]}
Copy

Create CustomUserToken Resource

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

Constructor syntax

new CustomUserToken(name: string, args: CustomUserTokenArgs, opts?: CustomResourceOptions);
@overload
def CustomUserToken(resource_name: str,
                    args: CustomUserTokenArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def CustomUserToken(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    password: Optional[str] = None,
                    username: Optional[str] = None,
                    annotations: Optional[Mapping[str, str]] = None,
                    cluster_id: Optional[str] = None,
                    description: Optional[str] = None,
                    labels: Optional[Mapping[str, str]] = None,
                    renew: Optional[bool] = None,
                    ttl: Optional[int] = None)
func NewCustomUserToken(ctx *Context, name string, args CustomUserTokenArgs, opts ...ResourceOption) (*CustomUserToken, error)
public CustomUserToken(string name, CustomUserTokenArgs args, CustomResourceOptions? opts = null)
public CustomUserToken(String name, CustomUserTokenArgs args)
public CustomUserToken(String name, CustomUserTokenArgs args, CustomResourceOptions options)
type: rancher2:CustomUserToken
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CustomUserTokenArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CustomUserTokenArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CustomUserTokenArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CustomUserTokenArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CustomUserTokenArgs
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 customUserTokenResource = new Rancher2.CustomUserToken("customUserTokenResource", new()
{
    Password = "string",
    Username = "string",
    Annotations = 
    {
        { "string", "string" },
    },
    ClusterId = "string",
    Description = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Renew = false,
    Ttl = 0,
});
Copy
example, err := rancher2.NewCustomUserToken(ctx, "customUserTokenResource", &rancher2.CustomUserTokenArgs{
	Password: pulumi.String("string"),
	Username: pulumi.String("string"),
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ClusterId:   pulumi.String("string"),
	Description: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Renew: pulumi.Bool(false),
	Ttl:   pulumi.Int(0),
})
Copy
var customUserTokenResource = new CustomUserToken("customUserTokenResource", CustomUserTokenArgs.builder()
    .password("string")
    .username("string")
    .annotations(Map.of("string", "string"))
    .clusterId("string")
    .description("string")
    .labels(Map.of("string", "string"))
    .renew(false)
    .ttl(0)
    .build());
Copy
custom_user_token_resource = rancher2.CustomUserToken("customUserTokenResource",
    password="string",
    username="string",
    annotations={
        "string": "string",
    },
    cluster_id="string",
    description="string",
    labels={
        "string": "string",
    },
    renew=False,
    ttl=0)
Copy
const customUserTokenResource = new rancher2.CustomUserToken("customUserTokenResource", {
    password: "string",
    username: "string",
    annotations: {
        string: "string",
    },
    clusterId: "string",
    description: "string",
    labels: {
        string: "string",
    },
    renew: false,
    ttl: 0,
});
Copy
type: rancher2:CustomUserToken
properties:
    annotations:
        string: string
    clusterId: string
    description: string
    labels:
        string: string
    password: string
    renew: false
    ttl: 0
    username: string
Copy

CustomUserToken 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 CustomUserToken resource accepts the following input properties:

Password
This property is required.
Changes to this property will trigger replacement.
string
The user password (string)
Username
This property is required.
Changes to this property will trigger replacement.
string
The user username (string)
Annotations Dictionary<string, string>
(Computed) Annotations of the token (map)
ClusterId Changes to this property will trigger replacement. string
Cluster ID for scoped token (string)
Description Changes to this property will trigger replacement. string
Token description (string)
Labels Dictionary<string, string>
(Computed) Labels of the token (map)
Renew Changes to this property will trigger replacement. bool
Renew expired or disabled token
Ttl Changes to this property will trigger replacement. int

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

Password
This property is required.
Changes to this property will trigger replacement.
string
The user password (string)
Username
This property is required.
Changes to this property will trigger replacement.
string
The user username (string)
Annotations map[string]string
(Computed) Annotations of the token (map)
ClusterId Changes to this property will trigger replacement. string
Cluster ID for scoped token (string)
Description Changes to this property will trigger replacement. string
Token description (string)
Labels map[string]string
(Computed) Labels of the token (map)
Renew Changes to this property will trigger replacement. bool
Renew expired or disabled token
Ttl Changes to this property will trigger replacement. int

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

password
This property is required.
Changes to this property will trigger replacement.
String
The user password (string)
username
This property is required.
Changes to this property will trigger replacement.
String
The user username (string)
annotations Map<String,String>
(Computed) Annotations of the token (map)
clusterId Changes to this property will trigger replacement. String
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. String
Token description (string)
labels Map<String,String>
(Computed) Labels of the token (map)
renew Changes to this property will trigger replacement. Boolean
Renew expired or disabled token
ttl Changes to this property will trigger replacement. Integer

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

password
This property is required.
Changes to this property will trigger replacement.
string
The user password (string)
username
This property is required.
Changes to this property will trigger replacement.
string
The user username (string)
annotations {[key: string]: string}
(Computed) Annotations of the token (map)
clusterId Changes to this property will trigger replacement. string
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. string
Token description (string)
labels {[key: string]: string}
(Computed) Labels of the token (map)
renew Changes to this property will trigger replacement. boolean
Renew expired or disabled token
ttl Changes to this property will trigger replacement. number

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

password
This property is required.
Changes to this property will trigger replacement.
str
The user password (string)
username
This property is required.
Changes to this property will trigger replacement.
str
The user username (string)
annotations Mapping[str, str]
(Computed) Annotations of the token (map)
cluster_id Changes to this property will trigger replacement. str
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. str
Token description (string)
labels Mapping[str, str]
(Computed) Labels of the token (map)
renew Changes to this property will trigger replacement. bool
Renew expired or disabled token
ttl Changes to this property will trigger replacement. int

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

password
This property is required.
Changes to this property will trigger replacement.
String
The user password (string)
username
This property is required.
Changes to this property will trigger replacement.
String
The user username (string)
annotations Map<String>
(Computed) Annotations of the token (map)
clusterId Changes to this property will trigger replacement. String
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. String
Token description (string)
labels Map<String>
(Computed) Labels of the token (map)
renew Changes to this property will trigger replacement. Boolean
Renew expired or disabled token
ttl Changes to this property will trigger replacement. Number

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

Outputs

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

AccessKey string
(Computed) Token access key part (string)
Enabled bool
(Computed) Token is enabled (bool)
Expired bool
(Computed) Token is expired (bool)
Id string
The provider-assigned unique ID for this managed resource.
Name string
(Computed) Token name (string)
SecretKey string
(Computed/Sensitive) Token secret key part (string)
TempToken string
(Computed) Generated API temporary token as helper. Should be empty (string)
TempTokenId string
(Computed) Generated API temporary token id as helper. Should be empty (string)
Token string
(Computed/Sensitive) Token value (string)
UserId string
(Computed) Token user ID (string)
AccessKey string
(Computed) Token access key part (string)
Enabled bool
(Computed) Token is enabled (bool)
Expired bool
(Computed) Token is expired (bool)
Id string
The provider-assigned unique ID for this managed resource.
Name string
(Computed) Token name (string)
SecretKey string
(Computed/Sensitive) Token secret key part (string)
TempToken string
(Computed) Generated API temporary token as helper. Should be empty (string)
TempTokenId string
(Computed) Generated API temporary token id as helper. Should be empty (string)
Token string
(Computed/Sensitive) Token value (string)
UserId string
(Computed) Token user ID (string)
accessKey String
(Computed) Token access key part (string)
enabled Boolean
(Computed) Token is enabled (bool)
expired Boolean
(Computed) Token is expired (bool)
id String
The provider-assigned unique ID for this managed resource.
name String
(Computed) Token name (string)
secretKey String
(Computed/Sensitive) Token secret key part (string)
tempToken String
(Computed) Generated API temporary token as helper. Should be empty (string)
tempTokenId String
(Computed) Generated API temporary token id as helper. Should be empty (string)
token String
(Computed/Sensitive) Token value (string)
userId String
(Computed) Token user ID (string)
accessKey string
(Computed) Token access key part (string)
enabled boolean
(Computed) Token is enabled (bool)
expired boolean
(Computed) Token is expired (bool)
id string
The provider-assigned unique ID for this managed resource.
name string
(Computed) Token name (string)
secretKey string
(Computed/Sensitive) Token secret key part (string)
tempToken string
(Computed) Generated API temporary token as helper. Should be empty (string)
tempTokenId string
(Computed) Generated API temporary token id as helper. Should be empty (string)
token string
(Computed/Sensitive) Token value (string)
userId string
(Computed) Token user ID (string)
access_key str
(Computed) Token access key part (string)
enabled bool
(Computed) Token is enabled (bool)
expired bool
(Computed) Token is expired (bool)
id str
The provider-assigned unique ID for this managed resource.
name str
(Computed) Token name (string)
secret_key str
(Computed/Sensitive) Token secret key part (string)
temp_token str
(Computed) Generated API temporary token as helper. Should be empty (string)
temp_token_id str
(Computed) Generated API temporary token id as helper. Should be empty (string)
token str
(Computed/Sensitive) Token value (string)
user_id str
(Computed) Token user ID (string)
accessKey String
(Computed) Token access key part (string)
enabled Boolean
(Computed) Token is enabled (bool)
expired Boolean
(Computed) Token is expired (bool)
id String
The provider-assigned unique ID for this managed resource.
name String
(Computed) Token name (string)
secretKey String
(Computed/Sensitive) Token secret key part (string)
tempToken String
(Computed) Generated API temporary token as helper. Should be empty (string)
tempTokenId String
(Computed) Generated API temporary token id as helper. Should be empty (string)
token String
(Computed/Sensitive) Token value (string)
userId String
(Computed) Token user ID (string)

Look up Existing CustomUserToken Resource

Get an existing CustomUserToken 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?: CustomUserTokenState, opts?: CustomResourceOptions): CustomUserToken
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_key: Optional[str] = None,
        annotations: Optional[Mapping[str, str]] = None,
        cluster_id: Optional[str] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        expired: Optional[bool] = None,
        labels: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        password: Optional[str] = None,
        renew: Optional[bool] = None,
        secret_key: Optional[str] = None,
        temp_token: Optional[str] = None,
        temp_token_id: Optional[str] = None,
        token: Optional[str] = None,
        ttl: Optional[int] = None,
        user_id: Optional[str] = None,
        username: Optional[str] = None) -> CustomUserToken
func GetCustomUserToken(ctx *Context, name string, id IDInput, state *CustomUserTokenState, opts ...ResourceOption) (*CustomUserToken, error)
public static CustomUserToken Get(string name, Input<string> id, CustomUserTokenState? state, CustomResourceOptions? opts = null)
public static CustomUserToken get(String name, Output<String> id, CustomUserTokenState state, CustomResourceOptions options)
resources:  _:    type: rancher2:CustomUserToken    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccessKey string
(Computed) Token access key part (string)
Annotations Dictionary<string, string>
(Computed) Annotations of the token (map)
ClusterId Changes to this property will trigger replacement. string
Cluster ID for scoped token (string)
Description Changes to this property will trigger replacement. string
Token description (string)
Enabled bool
(Computed) Token is enabled (bool)
Expired bool
(Computed) Token is expired (bool)
Labels Dictionary<string, string>
(Computed) Labels of the token (map)
Name string
(Computed) Token name (string)
Password Changes to this property will trigger replacement. string
The user password (string)
Renew Changes to this property will trigger replacement. bool
Renew expired or disabled token
SecretKey string
(Computed/Sensitive) Token secret key part (string)
TempToken string
(Computed) Generated API temporary token as helper. Should be empty (string)
TempTokenId string
(Computed) Generated API temporary token id as helper. Should be empty (string)
Token string
(Computed/Sensitive) Token value (string)
Ttl Changes to this property will trigger replacement. int

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

UserId string
(Computed) Token user ID (string)
Username Changes to this property will trigger replacement. string
The user username (string)
AccessKey string
(Computed) Token access key part (string)
Annotations map[string]string
(Computed) Annotations of the token (map)
ClusterId Changes to this property will trigger replacement. string
Cluster ID for scoped token (string)
Description Changes to this property will trigger replacement. string
Token description (string)
Enabled bool
(Computed) Token is enabled (bool)
Expired bool
(Computed) Token is expired (bool)
Labels map[string]string
(Computed) Labels of the token (map)
Name string
(Computed) Token name (string)
Password Changes to this property will trigger replacement. string
The user password (string)
Renew Changes to this property will trigger replacement. bool
Renew expired or disabled token
SecretKey string
(Computed/Sensitive) Token secret key part (string)
TempToken string
(Computed) Generated API temporary token as helper. Should be empty (string)
TempTokenId string
(Computed) Generated API temporary token id as helper. Should be empty (string)
Token string
(Computed/Sensitive) Token value (string)
Ttl Changes to this property will trigger replacement. int

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

UserId string
(Computed) Token user ID (string)
Username Changes to this property will trigger replacement. string
The user username (string)
accessKey String
(Computed) Token access key part (string)
annotations Map<String,String>
(Computed) Annotations of the token (map)
clusterId Changes to this property will trigger replacement. String
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. String
Token description (string)
enabled Boolean
(Computed) Token is enabled (bool)
expired Boolean
(Computed) Token is expired (bool)
labels Map<String,String>
(Computed) Labels of the token (map)
name String
(Computed) Token name (string)
password Changes to this property will trigger replacement. String
The user password (string)
renew Changes to this property will trigger replacement. Boolean
Renew expired or disabled token
secretKey String
(Computed/Sensitive) Token secret key part (string)
tempToken String
(Computed) Generated API temporary token as helper. Should be empty (string)
tempTokenId String
(Computed) Generated API temporary token id as helper. Should be empty (string)
token String
(Computed/Sensitive) Token value (string)
ttl Changes to this property will trigger replacement. Integer

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

userId String
(Computed) Token user ID (string)
username Changes to this property will trigger replacement. String
The user username (string)
accessKey string
(Computed) Token access key part (string)
annotations {[key: string]: string}
(Computed) Annotations of the token (map)
clusterId Changes to this property will trigger replacement. string
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. string
Token description (string)
enabled boolean
(Computed) Token is enabled (bool)
expired boolean
(Computed) Token is expired (bool)
labels {[key: string]: string}
(Computed) Labels of the token (map)
name string
(Computed) Token name (string)
password Changes to this property will trigger replacement. string
The user password (string)
renew Changes to this property will trigger replacement. boolean
Renew expired or disabled token
secretKey string
(Computed/Sensitive) Token secret key part (string)
tempToken string
(Computed) Generated API temporary token as helper. Should be empty (string)
tempTokenId string
(Computed) Generated API temporary token id as helper. Should be empty (string)
token string
(Computed/Sensitive) Token value (string)
ttl Changes to this property will trigger replacement. number

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

userId string
(Computed) Token user ID (string)
username Changes to this property will trigger replacement. string
The user username (string)
access_key str
(Computed) Token access key part (string)
annotations Mapping[str, str]
(Computed) Annotations of the token (map)
cluster_id Changes to this property will trigger replacement. str
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. str
Token description (string)
enabled bool
(Computed) Token is enabled (bool)
expired bool
(Computed) Token is expired (bool)
labels Mapping[str, str]
(Computed) Labels of the token (map)
name str
(Computed) Token name (string)
password Changes to this property will trigger replacement. str
The user password (string)
renew Changes to this property will trigger replacement. bool
Renew expired or disabled token
secret_key str
(Computed/Sensitive) Token secret key part (string)
temp_token str
(Computed) Generated API temporary token as helper. Should be empty (string)
temp_token_id str
(Computed) Generated API temporary token id as helper. Should be empty (string)
token str
(Computed/Sensitive) Token value (string)
ttl Changes to this property will trigger replacement. int

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

user_id str
(Computed) Token user ID (string)
username Changes to this property will trigger replacement. str
The user username (string)
accessKey String
(Computed) Token access key part (string)
annotations Map<String>
(Computed) Annotations of the token (map)
clusterId Changes to this property will trigger replacement. String
Cluster ID for scoped token (string)
description Changes to this property will trigger replacement. String
Token description (string)
enabled Boolean
(Computed) Token is enabled (bool)
expired Boolean
(Computed) Token is expired (bool)
labels Map<String>
(Computed) Labels of the token (map)
name String
(Computed) Token name (string)
password Changes to this property will trigger replacement. String
The user password (string)
renew Changes to this property will trigger replacement. Boolean
Renew expired or disabled token
secretKey String
(Computed/Sensitive) Token secret key part (string)
tempToken String
(Computed) Generated API temporary token as helper. Should be empty (string)
tempTokenId String
(Computed) Generated API temporary token id as helper. Should be empty (string)
token String
(Computed/Sensitive) Token value (string)
ttl Changes to this property will trigger replacement. Number

Token time to live in seconds. Default 0 (int)

From Rancher v2.4.6 ttl is read in minutes at Rancher API. To avoid breaking change on the provider, we still read in seconds but rounding up division if required.

userId String
(Computed) Token user ID (string)
username Changes to this property will trigger replacement. String
The user username (string)

Package Details

Repository
Rancher2 pulumi/pulumi-rancher2
License
Apache-2.0
Notes
This Pulumi package is based on the rancher2 Terraform Provider.