published on Monday, Aug 17, 2026 by stackitcloud
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.
- 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
Dremio
User Timeouts
- 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
Dremio
User Timeouts Args
- 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.
- 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
Dremio
User Timeouts
- 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
Dremio
User Timeouts
- 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
Dremio
User Timeouts Args
- 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 Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the DremioUser resource produces the following output properties:
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) -> DremioUserfunc 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.
- 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
Dremio
User Timeouts - User
Id 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
Dremio
User Timeouts Args - User
Id 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.
- 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
Dremio
User Timeouts - user
Id 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
Dremio
User Timeouts - user
Id 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
Dremio
User Timeouts Args - user_
id str - 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 Property Map
- user
Id 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
stackitTerraform Provider.
published on Monday, Aug 17, 2026 by stackitcloud