1. Packages
  2. Rancher2
  3. API Docs
  4. Bootstrap
Rancher 2 v6.1.0 published on Tuesday, Mar 12, 2024 by Pulumi

rancher2.Bootstrap

Explore with Pulumi AI

rancher2 logo
Rancher 2 v6.1.0 published on Tuesday, Mar 12, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as rancher2 from "@pulumi/rancher2";
    
    // Create a new rancher2_bootstrap
    const admin = new rancher2.Bootstrap("admin", {
        password: "blahblah",
        telemetry: true,
    });
    
    import pulumi
    import pulumi_rancher2 as rancher2
    
    # Create a new rancher2_bootstrap
    admin = rancher2.Bootstrap("admin",
        password="blahblah",
        telemetry=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-rancher2/sdk/v6/go/rancher2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create a new rancher2_bootstrap
    		_, err := rancher2.NewBootstrap(ctx, "admin", &rancher2.BootstrapArgs{
    			Password:  pulumi.String("blahblah"),
    			Telemetry: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Rancher2 = Pulumi.Rancher2;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a new rancher2_bootstrap
        var admin = new Rancher2.Bootstrap("admin", new()
        {
            Password = "blahblah",
            Telemetry = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.rancher2.Bootstrap;
    import com.pulumi.rancher2.BootstrapArgs;
    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 admin = new Bootstrap("admin", BootstrapArgs.builder()        
                .password("blahblah")
                .telemetry(true)
                .build());
    
        }
    }
    
    resources:
      # Create a new rancher2_bootstrap
      admin:
        type: rancher2:Bootstrap
        properties:
          password: blahblah
          telemetry: true
    
    import * as pulumi from "@pulumi/pulumi";
    import * as rancher2 from "@pulumi/rancher2";
    
    // Create a new rancher2_bootstrap for Rancher v2.6.0 and above
    const admin = new rancher2.Bootstrap("admin", {
        initialPassword: "<INSTALL_PASSWORD>",
        password: "blahblah",
        telemetry: true,
    });
    
    import pulumi
    import pulumi_rancher2 as rancher2
    
    # Create a new rancher2_bootstrap for Rancher v2.6.0 and above
    admin = rancher2.Bootstrap("admin",
        initial_password="<INSTALL_PASSWORD>",
        password="blahblah",
        telemetry=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-rancher2/sdk/v6/go/rancher2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create a new rancher2_bootstrap for Rancher v2.6.0 and above
    		_, err := rancher2.NewBootstrap(ctx, "admin", &rancher2.BootstrapArgs{
    			InitialPassword: pulumi.String("<INSTALL_PASSWORD>"),
    			Password:        pulumi.String("blahblah"),
    			Telemetry:       pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Rancher2 = Pulumi.Rancher2;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a new rancher2_bootstrap for Rancher v2.6.0 and above
        var admin = new Rancher2.Bootstrap("admin", new()
        {
            InitialPassword = "<INSTALL_PASSWORD>",
            Password = "blahblah",
            Telemetry = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.rancher2.Bootstrap;
    import com.pulumi.rancher2.BootstrapArgs;
    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 admin = new Bootstrap("admin", BootstrapArgs.builder()        
                .initialPassword("<INSTALL_PASSWORD>")
                .password("blahblah")
                .telemetry(true)
                .build());
    
        }
    }
    
    resources:
      # Create a new rancher2_bootstrap for Rancher v2.6.0 and above
      admin:
        type: rancher2:Bootstrap
        properties:
          initialPassword: <INSTALL_PASSWORD>
          password: blahblah
          telemetry: true
    
    import * as pulumi from "@pulumi/pulumi";
    import * as rancher2 from "@pulumi/rancher2";
    
    // Provider bootstrap config with alias
    const bootstrap = new rancher2.Provider("bootstrap", {
        apiUrl: "https://rancher.my-domain.com",
        bootstrap: true,
    });
    // Create a new rancher2_bootstrap using bootstrap provider config
    const admin = new rancher2.Bootstrap("admin", {
        password: "blahblah",
        telemetry: true,
    }, {
        provider: "rancher2.bootstrap",
    });
    
    import pulumi
    import pulumi_rancher2 as rancher2
    
    # Provider bootstrap config with alias
    bootstrap = rancher2.Provider("bootstrap",
        api_url="https://rancher.my-domain.com",
        bootstrap=True)
    # Create a new rancher2_bootstrap using bootstrap provider config
    admin = rancher2.Bootstrap("admin",
        password="blahblah",
        telemetry=True,
        opts=pulumi.ResourceOptions(provider="rancher2.bootstrap"))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-rancher2/sdk/v6/go/rancher2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Provider bootstrap config with alias
    		_, err := rancher2.NewProvider(ctx, "bootstrap", &rancher2.ProviderArgs{
    			ApiUrl:    pulumi.String("https://rancher.my-domain.com"),
    			Bootstrap: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		// Create a new rancher2_bootstrap using bootstrap provider config
    		_, err = rancher2.NewBootstrap(ctx, "admin", &rancher2.BootstrapArgs{
    			Password:  pulumi.String("blahblah"),
    			Telemetry: pulumi.Bool(true),
    		}, pulumi.Provider("rancher2.bootstrap"))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Rancher2 = Pulumi.Rancher2;
    
    return await Deployment.RunAsync(() => 
    {
        // Provider bootstrap config with alias
        var bootstrap = new Rancher2.Provider("bootstrap", new()
        {
            ApiUrl = "https://rancher.my-domain.com",
            Bootstrap = true,
        });
    
        // Create a new rancher2_bootstrap using bootstrap provider config
        var admin = new Rancher2.Bootstrap("admin", new()
        {
            Password = "blahblah",
            Telemetry = true,
        }, new CustomResourceOptions
        {
            Provider = "rancher2.bootstrap",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.rancher2.Provider;
    import com.pulumi.rancher2.ProviderArgs;
    import com.pulumi.rancher2.Bootstrap;
    import com.pulumi.rancher2.BootstrapArgs;
    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) {
            var bootstrap = new Provider("bootstrap", ProviderArgs.builder()        
                .apiUrl("https://rancher.my-domain.com")
                .bootstrap(true)
                .build());
    
            var admin = new Bootstrap("admin", BootstrapArgs.builder()        
                .password("blahblah")
                .telemetry(true)
                .build(), CustomResourceOptions.builder()
                    .provider("rancher2.bootstrap")
                    .build());
    
        }
    }
    
    resources:
      # Provider bootstrap config with alias
      bootstrap:
        type: pulumi:providers:rancher2
        properties:
          apiUrl: https://rancher.my-domain.com
          bootstrap: true
      # Create a new rancher2_bootstrap using bootstrap provider config
      admin:
        type: rancher2:Bootstrap
        properties:
          password: blahblah
          telemetry: true
        options:
          provider: rancher2.bootstrap
    

    Create Bootstrap Resource

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

    Constructor syntax

    new Bootstrap(name: string, args?: BootstrapArgs, opts?: CustomResourceOptions);
    @overload
    def Bootstrap(resource_name: str,
                  args: Optional[BootstrapArgs] = None,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Bootstrap(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  initial_password: Optional[str] = None,
                  password: Optional[str] = None,
                  telemetry: Optional[bool] = None,
                  token_ttl: Optional[int] = None,
                  token_update: Optional[bool] = None,
                  ui_default_landing: Optional[str] = None)
    func NewBootstrap(ctx *Context, name string, args *BootstrapArgs, opts ...ResourceOption) (*Bootstrap, error)
    public Bootstrap(string name, BootstrapArgs? args = null, CustomResourceOptions? opts = null)
    public Bootstrap(String name, BootstrapArgs args)
    public Bootstrap(String name, BootstrapArgs args, CustomResourceOptions options)
    
    type: rancher2:Bootstrap
    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 BootstrapArgs
    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 BootstrapArgs
    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 BootstrapArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BootstrapArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BootstrapArgs
    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 bootstrapResource = new Rancher2.Bootstrap("bootstrapResource", new()
    {
        InitialPassword = "string",
        Password = "string",
        Telemetry = false,
        TokenTtl = 0,
        TokenUpdate = false,
        UiDefaultLanding = "string",
    });
    
    example, err := rancher2.NewBootstrap(ctx, "bootstrapResource", &rancher2.BootstrapArgs{
    	InitialPassword:  pulumi.String("string"),
    	Password:         pulumi.String("string"),
    	Telemetry:        pulumi.Bool(false),
    	TokenTtl:         pulumi.Int(0),
    	TokenUpdate:      pulumi.Bool(false),
    	UiDefaultLanding: pulumi.String("string"),
    })
    
    var bootstrapResource = new Bootstrap("bootstrapResource", BootstrapArgs.builder()        
        .initialPassword("string")
        .password("string")
        .telemetry(false)
        .tokenTtl(0)
        .tokenUpdate(false)
        .uiDefaultLanding("string")
        .build());
    
    bootstrap_resource = rancher2.Bootstrap("bootstrapResource",
        initial_password="string",
        password="string",
        telemetry=False,
        token_ttl=0,
        token_update=False,
        ui_default_landing="string")
    
    const bootstrapResource = new rancher2.Bootstrap("bootstrapResource", {
        initialPassword: "string",
        password: "string",
        telemetry: false,
        tokenTtl: 0,
        tokenUpdate: false,
        uiDefaultLanding: "string",
    });
    
    type: rancher2:Bootstrap
    properties:
        initialPassword: string
        password: string
        telemetry: false
        tokenTtl: 0
        tokenUpdate: false
        uiDefaultLanding: string
    

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

    InitialPassword string
    Initial password for Admin user. Default: admin (string)
    Password string
    Password for Admin user or random generated if empty (string)
    Telemetry bool
    Send telemetry anonymous data. Default: false (bool)
    TokenTtl int
    TTL in seconds for generated admin token. Default: 0 (int)
    TokenUpdate bool
    Regenerate admin token. Default: false (bool)
    UiDefaultLanding string
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    InitialPassword string
    Initial password for Admin user. Default: admin (string)
    Password string
    Password for Admin user or random generated if empty (string)
    Telemetry bool
    Send telemetry anonymous data. Default: false (bool)
    TokenTtl int
    TTL in seconds for generated admin token. Default: 0 (int)
    TokenUpdate bool
    Regenerate admin token. Default: false (bool)
    UiDefaultLanding string
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    initialPassword String
    Initial password for Admin user. Default: admin (string)
    password String
    Password for Admin user or random generated if empty (string)
    telemetry Boolean
    Send telemetry anonymous data. Default: false (bool)
    tokenTtl Integer
    TTL in seconds for generated admin token. Default: 0 (int)
    tokenUpdate Boolean
    Regenerate admin token. Default: false (bool)
    uiDefaultLanding String
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    initialPassword string
    Initial password for Admin user. Default: admin (string)
    password string
    Password for Admin user or random generated if empty (string)
    telemetry boolean
    Send telemetry anonymous data. Default: false (bool)
    tokenTtl number
    TTL in seconds for generated admin token. Default: 0 (int)
    tokenUpdate boolean
    Regenerate admin token. Default: false (bool)
    uiDefaultLanding string
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    initial_password str
    Initial password for Admin user. Default: admin (string)
    password str
    Password for Admin user or random generated if empty (string)
    telemetry bool
    Send telemetry anonymous data. Default: false (bool)
    token_ttl int
    TTL in seconds for generated admin token. Default: 0 (int)
    token_update bool
    Regenerate admin token. Default: false (bool)
    ui_default_landing str
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    initialPassword String
    Initial password for Admin user. Default: admin (string)
    password String
    Password for Admin user or random generated if empty (string)
    telemetry Boolean
    Send telemetry anonymous data. Default: false (bool)
    tokenTtl Number
    TTL in seconds for generated admin token. Default: 0 (int)
    tokenUpdate Boolean
    Regenerate admin token. Default: false (bool)
    uiDefaultLanding String
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)

    Outputs

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

    CurrentPassword string
    (Computed/Sensitive) Current password for Admin user (string)
    Id string
    The provider-assigned unique ID for this managed resource.
    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) Generated API token for Admin User (string)
    TokenId string
    (Computed) Generated API token id for Admin User (string)
    Url string
    (Computed) URL set as server-url (string)
    User string
    (Computed) Admin username (string)
    CurrentPassword string
    (Computed/Sensitive) Current password for Admin user (string)
    Id string
    The provider-assigned unique ID for this managed resource.
    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) Generated API token for Admin User (string)
    TokenId string
    (Computed) Generated API token id for Admin User (string)
    Url string
    (Computed) URL set as server-url (string)
    User string
    (Computed) Admin username (string)
    currentPassword String
    (Computed/Sensitive) Current password for Admin user (string)
    id String
    The provider-assigned unique ID for this managed resource.
    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) Generated API token for Admin User (string)
    tokenId String
    (Computed) Generated API token id for Admin User (string)
    url String
    (Computed) URL set as server-url (string)
    user String
    (Computed) Admin username (string)
    currentPassword string
    (Computed/Sensitive) Current password for Admin user (string)
    id string
    The provider-assigned unique ID for this managed resource.
    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) Generated API token for Admin User (string)
    tokenId string
    (Computed) Generated API token id for Admin User (string)
    url string
    (Computed) URL set as server-url (string)
    user string
    (Computed) Admin username (string)
    current_password str
    (Computed/Sensitive) Current password for Admin user (string)
    id str
    The provider-assigned unique ID for this managed resource.
    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) Generated API token for Admin User (string)
    token_id str
    (Computed) Generated API token id for Admin User (string)
    url str
    (Computed) URL set as server-url (string)
    user str
    (Computed) Admin username (string)
    currentPassword String
    (Computed/Sensitive) Current password for Admin user (string)
    id String
    The provider-assigned unique ID for this managed resource.
    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) Generated API token for Admin User (string)
    tokenId String
    (Computed) Generated API token id for Admin User (string)
    url String
    (Computed) URL set as server-url (string)
    user String
    (Computed) Admin username (string)

    Look up Existing Bootstrap Resource

    Get an existing Bootstrap 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?: BootstrapState, opts?: CustomResourceOptions): Bootstrap
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            current_password: Optional[str] = None,
            initial_password: Optional[str] = None,
            password: Optional[str] = None,
            telemetry: Optional[bool] = None,
            temp_token: Optional[str] = None,
            temp_token_id: Optional[str] = None,
            token: Optional[str] = None,
            token_id: Optional[str] = None,
            token_ttl: Optional[int] = None,
            token_update: Optional[bool] = None,
            ui_default_landing: Optional[str] = None,
            url: Optional[str] = None,
            user: Optional[str] = None) -> Bootstrap
    func GetBootstrap(ctx *Context, name string, id IDInput, state *BootstrapState, opts ...ResourceOption) (*Bootstrap, error)
    public static Bootstrap Get(string name, Input<string> id, BootstrapState? state, CustomResourceOptions? opts = null)
    public static Bootstrap get(String name, Output<String> id, BootstrapState 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:
    CurrentPassword string
    (Computed/Sensitive) Current password for Admin user (string)
    InitialPassword string
    Initial password for Admin user. Default: admin (string)
    Password string
    Password for Admin user or random generated if empty (string)
    Telemetry bool
    Send telemetry anonymous data. Default: false (bool)
    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) Generated API token for Admin User (string)
    TokenId string
    (Computed) Generated API token id for Admin User (string)
    TokenTtl int
    TTL in seconds for generated admin token. Default: 0 (int)
    TokenUpdate bool
    Regenerate admin token. Default: false (bool)
    UiDefaultLanding string
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    Url string
    (Computed) URL set as server-url (string)
    User string
    (Computed) Admin username (string)
    CurrentPassword string
    (Computed/Sensitive) Current password for Admin user (string)
    InitialPassword string
    Initial password for Admin user. Default: admin (string)
    Password string
    Password for Admin user or random generated if empty (string)
    Telemetry bool
    Send telemetry anonymous data. Default: false (bool)
    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) Generated API token for Admin User (string)
    TokenId string
    (Computed) Generated API token id for Admin User (string)
    TokenTtl int
    TTL in seconds for generated admin token. Default: 0 (int)
    TokenUpdate bool
    Regenerate admin token. Default: false (bool)
    UiDefaultLanding string
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    Url string
    (Computed) URL set as server-url (string)
    User string
    (Computed) Admin username (string)
    currentPassword String
    (Computed/Sensitive) Current password for Admin user (string)
    initialPassword String
    Initial password for Admin user. Default: admin (string)
    password String
    Password for Admin user or random generated if empty (string)
    telemetry Boolean
    Send telemetry anonymous data. Default: false (bool)
    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) Generated API token for Admin User (string)
    tokenId String
    (Computed) Generated API token id for Admin User (string)
    tokenTtl Integer
    TTL in seconds for generated admin token. Default: 0 (int)
    tokenUpdate Boolean
    Regenerate admin token. Default: false (bool)
    uiDefaultLanding String
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    url String
    (Computed) URL set as server-url (string)
    user String
    (Computed) Admin username (string)
    currentPassword string
    (Computed/Sensitive) Current password for Admin user (string)
    initialPassword string
    Initial password for Admin user. Default: admin (string)
    password string
    Password for Admin user or random generated if empty (string)
    telemetry boolean
    Send telemetry anonymous data. Default: false (bool)
    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) Generated API token for Admin User (string)
    tokenId string
    (Computed) Generated API token id for Admin User (string)
    tokenTtl number
    TTL in seconds for generated admin token. Default: 0 (int)
    tokenUpdate boolean
    Regenerate admin token. Default: false (bool)
    uiDefaultLanding string
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    url string
    (Computed) URL set as server-url (string)
    user string
    (Computed) Admin username (string)
    current_password str
    (Computed/Sensitive) Current password for Admin user (string)
    initial_password str
    Initial password for Admin user. Default: admin (string)
    password str
    Password for Admin user or random generated if empty (string)
    telemetry bool
    Send telemetry anonymous data. Default: false (bool)
    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) Generated API token for Admin User (string)
    token_id str
    (Computed) Generated API token id for Admin User (string)
    token_ttl int
    TTL in seconds for generated admin token. Default: 0 (int)
    token_update bool
    Regenerate admin token. Default: false (bool)
    ui_default_landing str
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    url str
    (Computed) URL set as server-url (string)
    user str
    (Computed) Admin username (string)
    currentPassword String
    (Computed/Sensitive) Current password for Admin user (string)
    initialPassword String
    Initial password for Admin user. Default: admin (string)
    password String
    Password for Admin user or random generated if empty (string)
    telemetry Boolean
    Send telemetry anonymous data. Default: false (bool)
    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) Generated API token for Admin User (string)
    tokenId String
    (Computed) Generated API token id for Admin User (string)
    tokenTtl Number
    TTL in seconds for generated admin token. Default: 0 (int)
    tokenUpdate Boolean
    Regenerate admin token. Default: false (bool)
    uiDefaultLanding String
    Default UI landing for k8s clusters. Available options: ember (cluster manager ui) and vue (cluster explorer ui). Default: ember (string)
    url String
    (Computed) URL set as server-url (string)
    user String
    (Computed) Admin username (string)

    Package Details

    Repository
    Rancher2 pulumi/pulumi-rancher2
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rancher2 Terraform Provider.
    rancher2 logo
    Rancher 2 v6.1.0 published on Tuesday, Mar 12, 2024 by Pulumi