1. Registry
  2. Packages
  3. stackit
  4. API Docs
  5. DremioUser
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.7
published on Monday, Aug 17, 2026 by stackitcloud

    Manages a STACKIT Dremio instances user.

    This resource is part of the experimental feature dremio and is likely going to undergo significant changes or be removed in the future. Use it at your own discretion.

    Example Usage

    resource "stackit_dremio_user" "example" {
      project_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      region      = "eu01"
      instance_id = "example-instance-id"
    
      description = "STACKIT Terraform example"
      email       = "example@example.com"
      first_name  = "Test"
      last_name   = "User"
      name        = "testUser"
    }
    

    Create DremioUser Resource

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

    Constructor syntax

    new DremioUser(name: string, args: DremioUserArgs, opts?: CustomResourceOptions);
    @overload
    def DremioUser(resource_name: str,
                   args: DremioUserArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def DremioUser(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   email: Optional[str] = None,
                   first_name: Optional[str] = None,
                   instance_id: Optional[str] = None,
                   last_name: Optional[str] = None,
                   password: Optional[str] = None,
                   project_id: Optional[str] = None,
                   description: Optional[str] = None,
                   name: Optional[str] = None,
                   region: Optional[str] = None,
                   timeouts: Optional[DremioUserTimeoutsArgs] = None)
    func NewDremioUser(ctx *Context, name string, args DremioUserArgs, opts ...ResourceOption) (*DremioUser, error)
    public DremioUser(string name, DremioUserArgs args, CustomResourceOptions? opts = null)
    public DremioUser(String name, DremioUserArgs args)
    public DremioUser(String name, DremioUserArgs args, CustomResourceOptions options)
    
    type: stackit:DremioUser
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "stackit_dremio_user" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args DremioUserArgs
    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 DremioUserArgs
    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 DremioUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DremioUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DremioUserArgs
    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 dremioUserResource = new Stackit.DremioUser("dremioUserResource", new()
    {
        Email = "string",
        FirstName = "string",
        InstanceId = "string",
        LastName = "string",
        Password = "string",
        ProjectId = "string",
        Description = "string",
        Name = "string",
        Region = "string",
        Timeouts = new Stackit.Inputs.DremioUserTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := stackit.NewDremioUser(ctx, "dremioUserResource", &stackit.DremioUserArgs{
    	Email:       pulumi.String("string"),
    	FirstName:   pulumi.String("string"),
    	InstanceId:  pulumi.String("string"),
    	LastName:    pulumi.String("string"),
    	Password:    pulumi.String("string"),
    	ProjectId:   pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Region:      pulumi.String("string"),
    	Timeouts: &stackit.DremioUserTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    resource "stackit_dremio_user" "dremioUserResource" {
      lifecycle {
        create_before_destroy = true
      }
      email       = "string"
      first_name  = "string"
      instance_id = "string"
      last_name   = "string"
      password    = "string"
      project_id  = "string"
      description = "string"
      name        = "string"
      region      = "string"
      timeouts = {
        create = "string"
        delete = "string"
        read   = "string"
        update = "string"
      }
    }
    
    var dremioUserResource = new DremioUser("dremioUserResource", DremioUserArgs.builder()
        .email("string")
        .firstName("string")
        .instanceId("string")
        .lastName("string")
        .password("string")
        .projectId("string")
        .description("string")
        .name("string")
        .region("string")
        .timeouts(DremioUserTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    dremio_user_resource = stackit.DremioUser("dremioUserResource",
        email="string",
        first_name="string",
        instance_id="string",
        last_name="string",
        password="string",
        project_id="string",
        description="string",
        name="string",
        region="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const dremioUserResource = new stackit.DremioUser("dremioUserResource", {
        email: "string",
        firstName: "string",
        instanceId: "string",
        lastName: "string",
        password: "string",
        projectId: "string",
        description: "string",
        name: "string",
        region: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: stackit:DremioUser
    properties:
        description: string
        email: string
        firstName: string
        instanceId: string
        lastName: string
        name: string
        password: string
        projectId: string
        region: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

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

    Email string
    The email address of the user.
    FirstName string
    The first name of the user.
    InstanceId string
    The Dremio instance ID.
    LastName string
    The last name of the user.
    Password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    ProjectId string
    STACKIT Project ID to which the resource is associated.
    Description string
    The description of the user.
    Name string
    The username of the user.
    Region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    Timeouts DremioUserTimeouts
    Email string
    The email address of the user.
    FirstName string
    The first name of the user.
    InstanceId string
    The Dremio instance ID.
    LastName string
    The last name of the user.
    Password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    ProjectId string
    STACKIT Project ID to which the resource is associated.
    Description string
    The description of the user.
    Name string
    The username of the user.
    Region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    Timeouts DremioUserTimeoutsArgs
    email string
    The email address of the user.
    first_name string
    The first name of the user.
    instance_id string
    The Dremio instance ID.
    last_name string
    The last name of the user.
    password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    project_id string
    STACKIT Project ID to which the resource is associated.
    description string
    The description of the user.
    name string
    The username of the user.
    region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts object
    email String
    The email address of the user.
    firstName String
    The first name of the user.
    instanceId String
    The Dremio instance ID.
    lastName String
    The last name of the user.
    password String
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    projectId String
    STACKIT Project ID to which the resource is associated.
    description String
    The description of the user.
    name String
    The username of the user.
    region String
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts DremioUserTimeouts
    email string
    The email address of the user.
    firstName string
    The first name of the user.
    instanceId string
    The Dremio instance ID.
    lastName string
    The last name of the user.
    password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    projectId string
    STACKIT Project ID to which the resource is associated.
    description string
    The description of the user.
    name string
    The username of the user.
    region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts DremioUserTimeouts
    email str
    The email address of the user.
    first_name str
    The first name of the user.
    instance_id str
    The Dremio instance ID.
    last_name str
    The last name of the user.
    password str
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    project_id str
    STACKIT Project ID to which the resource is associated.
    description str
    The description of the user.
    name str
    The username of the user.
    region str
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts DremioUserTimeoutsArgs
    email String
    The email address of the user.
    firstName String
    The first name of the user.
    instanceId String
    The Dremio instance ID.
    lastName String
    The last name of the user.
    password String
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    projectId String
    STACKIT Project ID to which the resource is associated.
    description String
    The description of the user.
    name String
    The username of the user.
    region String
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    UserId string
    The Dremio user ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    UserId string
    The Dremio user ID.
    id string
    The provider-assigned unique ID for this managed resource.
    user_id string
    The Dremio user ID.
    id String
    The provider-assigned unique ID for this managed resource.
    userId String
    The Dremio user ID.
    id string
    The provider-assigned unique ID for this managed resource.
    userId string
    The Dremio user ID.
    id str
    The provider-assigned unique ID for this managed resource.
    user_id str
    The Dremio user ID.
    id String
    The provider-assigned unique ID for this managed resource.
    userId String
    The Dremio user ID.

    Look up Existing DremioUser Resource

    Get an existing DremioUser 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?: DremioUserState, opts?: CustomResourceOptions): DremioUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            email: Optional[str] = None,
            first_name: Optional[str] = None,
            instance_id: Optional[str] = None,
            last_name: Optional[str] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            timeouts: Optional[DremioUserTimeoutsArgs] = None,
            user_id: Optional[str] = None) -> DremioUser
    func GetDremioUser(ctx *Context, name string, id IDInput, state *DremioUserState, opts ...ResourceOption) (*DremioUser, error)
    public static DremioUser Get(string name, Input<string> id, DremioUserState? state, CustomResourceOptions? opts = null)
    public static DremioUser get(String name, Output<String> id, DremioUserState state, CustomResourceOptions options)
    resources:  _:    type: stackit:DremioUser    get:      id: ${id}
    import {
      to = stackit_dremio_user.example
      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:
    Description string
    The description of the user.
    Email string
    The email address of the user.
    FirstName string
    The first name of the user.
    InstanceId string
    The Dremio instance ID.
    LastName string
    The last name of the user.
    Name string
    The username of the user.
    Password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    ProjectId string
    STACKIT Project ID to which the resource is associated.
    Region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    Timeouts DremioUserTimeouts
    UserId string
    The Dremio user ID.
    Description string
    The description of the user.
    Email string
    The email address of the user.
    FirstName string
    The first name of the user.
    InstanceId string
    The Dremio instance ID.
    LastName string
    The last name of the user.
    Name string
    The username of the user.
    Password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    ProjectId string
    STACKIT Project ID to which the resource is associated.
    Region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    Timeouts DremioUserTimeoutsArgs
    UserId string
    The Dremio user ID.
    description string
    The description of the user.
    email string
    The email address of the user.
    first_name string
    The first name of the user.
    instance_id string
    The Dremio instance ID.
    last_name string
    The last name of the user.
    name string
    The username of the user.
    password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    project_id string
    STACKIT Project ID to which the resource is associated.
    region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts object
    user_id string
    The Dremio user ID.
    description String
    The description of the user.
    email String
    The email address of the user.
    firstName String
    The first name of the user.
    instanceId String
    The Dremio instance ID.
    lastName String
    The last name of the user.
    name String
    The username of the user.
    password String
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    projectId String
    STACKIT Project ID to which the resource is associated.
    region String
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts DremioUserTimeouts
    userId String
    The Dremio user ID.
    description string
    The description of the user.
    email string
    The email address of the user.
    firstName string
    The first name of the user.
    instanceId string
    The Dremio instance ID.
    lastName string
    The last name of the user.
    name string
    The username of the user.
    password string
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    projectId string
    STACKIT Project ID to which the resource is associated.
    region string
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts DremioUserTimeouts
    userId string
    The Dremio user ID.
    description str
    The description of the user.
    email str
    The email address of the user.
    first_name str
    The first name of the user.
    instance_id str
    The Dremio instance ID.
    last_name str
    The last name of the user.
    name str
    The username of the user.
    password str
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    project_id str
    STACKIT Project ID to which the resource is associated.
    region str
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts DremioUserTimeoutsArgs
    user_id str
    The Dremio user ID.
    description String
    The description of the user.
    email String
    The email address of the user.
    firstName String
    The first name of the user.
    instanceId String
    The Dremio instance ID.
    lastName String
    The last name of the user.
    name String
    The username of the user.
    password String
    The password of the user. Only used for creation and updates. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
    projectId String
    STACKIT Project ID to which the resource is associated.
    region String
    The STACKIT region name the resource is located in. If not defined, the provider region is used.
    timeouts Property Map
    userId String
    The Dremio user ID.

    Supporting Types

    DremioUserTimeouts, DremioUserTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    In Terraform v1.5.0 and later, the + "" + import + “" + block can be used with the + "” + id + “" + attribute, for example:

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

    Package Details

    Repository
    stackit stackitcloud/pulumi-stackit
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.7
    published on Monday, Aug 17, 2026 by stackitcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial