published on Monday, Aug 17, 2026 by stackitcloud
published on Monday, Aug 17, 2026 by stackitcloud
Manages a STACKIT Dremio instance.
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_instance" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
region = "eu01"
display_name = "exampleName"
description = "Example description"
authentication = {
type = "local-only" // "oauth" or "azuread" for IDP config
oauth = { // only needed if "oauth" is given as type
authority_url = "authority"
client_id = "client-id"
client_secret = "client-secret"
jwt_claims = {
user_name = "example"
}
scope = "idp-scope"
parameters = [
{ "name" : "example", "value" : "example-value" }
]
}
azuread = { // only needed if "azuread" is given as type
authority_url = "authority"
client_id = "client-id"
client_secret = "client-secret"
}
}
}
Create DremioInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DremioInstance(name: string, args: DremioInstanceArgs, opts?: CustomResourceOptions);@overload
def DremioInstance(resource_name: str,
args: DremioInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DremioInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
authentication: Optional[DremioInstanceAuthenticationArgs] = None,
display_name: Optional[str] = None,
project_id: Optional[str] = None,
description: Optional[str] = None,
region: Optional[str] = None,
timeouts: Optional[DremioInstanceTimeoutsArgs] = None)func NewDremioInstance(ctx *Context, name string, args DremioInstanceArgs, opts ...ResourceOption) (*DremioInstance, error)public DremioInstance(string name, DremioInstanceArgs args, CustomResourceOptions? opts = null)
public DremioInstance(String name, DremioInstanceArgs args)
public DremioInstance(String name, DremioInstanceArgs args, CustomResourceOptions options)
type: stackit:DremioInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "stackit_dremio_instance" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DremioInstanceArgs
- 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 DremioInstanceArgs
- 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 DremioInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DremioInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DremioInstanceArgs
- 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 dremioInstanceResource = new Stackit.DremioInstance("dremioInstanceResource", new()
{
Authentication = new Stackit.Inputs.DremioInstanceAuthenticationArgs
{
Type = "string",
Azuread = new Stackit.Inputs.DremioInstanceAuthenticationAzureadArgs
{
AuthorityUrl = "string",
ClientId = "string",
ClientSecret = "string",
RedirectUrl = "string",
},
Oauth = new Stackit.Inputs.DremioInstanceAuthenticationOauthArgs
{
AuthorityUrl = "string",
ClientId = "string",
ClientSecret = "string",
JwtClaims = new Stackit.Inputs.DremioInstanceAuthenticationOauthJwtClaimsArgs
{
UserName = "string",
},
Parameters = new[]
{
new Stackit.Inputs.DremioInstanceAuthenticationOauthParameterArgs
{
Name = "string",
Value = "string",
},
},
RedirectUrl = "string",
Scope = "string",
},
},
DisplayName = "string",
ProjectId = "string",
Description = "string",
Region = "string",
Timeouts = new Stackit.Inputs.DremioInstanceTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := stackit.NewDremioInstance(ctx, "dremioInstanceResource", &stackit.DremioInstanceArgs{
Authentication: &stackit.DremioInstanceAuthenticationArgs{
Type: pulumi.String("string"),
Azuread: &stackit.DremioInstanceAuthenticationAzureadArgs{
AuthorityUrl: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RedirectUrl: pulumi.String("string"),
},
Oauth: &stackit.DremioInstanceAuthenticationOauthArgs{
AuthorityUrl: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
JwtClaims: &stackit.DremioInstanceAuthenticationOauthJwtClaimsArgs{
UserName: pulumi.String("string"),
},
Parameters: stackit.DremioInstanceAuthenticationOauthParameterArray{
&stackit.DremioInstanceAuthenticationOauthParameterArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
RedirectUrl: pulumi.String("string"),
Scope: pulumi.String("string"),
},
},
DisplayName: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Description: pulumi.String("string"),
Region: pulumi.String("string"),
Timeouts: &stackit.DremioInstanceTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "stackit_dremio_instance" "dremioInstanceResource" {
lifecycle {
create_before_destroy = true
}
authentication = {
type = "string"
azuread = {
authority_url = "string"
client_id = "string"
client_secret = "string"
redirect_url = "string"
}
oauth = {
authority_url = "string"
client_id = "string"
client_secret = "string"
jwt_claims = {
user_name = "string"
}
parameters = [{
name = "string"
value = "string"
}]
redirect_url = "string"
scope = "string"
}
}
display_name = "string"
project_id = "string"
description = "string"
region = "string"
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var dremioInstanceResource = new DremioInstance("dremioInstanceResource", DremioInstanceArgs.builder()
.authentication(DremioInstanceAuthenticationArgs.builder()
.type("string")
.azuread(DremioInstanceAuthenticationAzureadArgs.builder()
.authorityUrl("string")
.clientId("string")
.clientSecret("string")
.redirectUrl("string")
.build())
.oauth(DremioInstanceAuthenticationOauthArgs.builder()
.authorityUrl("string")
.clientId("string")
.clientSecret("string")
.jwtClaims(DremioInstanceAuthenticationOauthJwtClaimsArgs.builder()
.userName("string")
.build())
.parameters(DremioInstanceAuthenticationOauthParameterArgs.builder()
.name("string")
.value("string")
.build())
.redirectUrl("string")
.scope("string")
.build())
.build())
.displayName("string")
.projectId("string")
.description("string")
.region("string")
.timeouts(DremioInstanceTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
dremio_instance_resource = stackit.DremioInstance("dremioInstanceResource",
authentication={
"type": "string",
"azuread": {
"authority_url": "string",
"client_id": "string",
"client_secret": "string",
"redirect_url": "string",
},
"oauth": {
"authority_url": "string",
"client_id": "string",
"client_secret": "string",
"jwt_claims": {
"user_name": "string",
},
"parameters": [{
"name": "string",
"value": "string",
}],
"redirect_url": "string",
"scope": "string",
},
},
display_name="string",
project_id="string",
description="string",
region="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const dremioInstanceResource = new stackit.DremioInstance("dremioInstanceResource", {
authentication: {
type: "string",
azuread: {
authorityUrl: "string",
clientId: "string",
clientSecret: "string",
redirectUrl: "string",
},
oauth: {
authorityUrl: "string",
clientId: "string",
clientSecret: "string",
jwtClaims: {
userName: "string",
},
parameters: [{
name: "string",
value: "string",
}],
redirectUrl: "string",
scope: "string",
},
},
displayName: "string",
projectId: "string",
description: "string",
region: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: stackit:DremioInstance
properties:
authentication:
azuread:
authorityUrl: string
clientId: string
clientSecret: string
redirectUrl: string
oauth:
authorityUrl: string
clientId: string
clientSecret: string
jwtClaims:
userName: string
parameters:
- name: string
value: string
redirectUrl: string
scope: string
type: string
description: string
displayName: string
projectId: string
region: string
timeouts:
create: string
delete: string
read: string
update: string
DremioInstance 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 DremioInstance resource accepts the following input properties:
- Authentication
Dremio
Instance Authentication - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- Display
Name string - The display name is a short name chosen by the user to identify the resource.
- Project
Id string - STACKIT Project ID to which the resource is associated.
- Description string
- The description is a longer text chosen by the user to provide more context for the resource.
- Region string
- The STACKIT region name the resource is located in. If not defined, the provider region is used.
- Timeouts
Dremio
Instance Timeouts
- Authentication
Dremio
Instance Authentication Args - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- Display
Name string - The display name is a short name chosen by the user to identify the resource.
- Project
Id string - STACKIT Project ID to which the resource is associated.
- Description string
- The description is a longer text chosen by the user to provide more context for the resource.
- Region string
- The STACKIT region name the resource is located in. If not defined, the provider region is used.
- Timeouts
Dremio
Instance Timeouts Args
- authentication object
- Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- display_
name string - The display name is a short name chosen by the user to identify the resource.
- project_
id string - STACKIT Project ID to which the resource is associated.
- description string
- The description is a longer text chosen by the user to provide more context for the resource.
- region string
- The STACKIT region name the resource is located in. If not defined, the provider region is used.
- timeouts object
- authentication
Dremio
Instance Authentication - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- display
Name String - The display name is a short name chosen by the user to identify the resource.
- project
Id String - STACKIT Project ID to which the resource is associated.
- description String
- The description is a longer text chosen by the user to provide more context for the resource.
- region String
- The STACKIT region name the resource is located in. If not defined, the provider region is used.
- timeouts
Dremio
Instance Timeouts
- authentication
Dremio
Instance Authentication - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- display
Name string - The display name is a short name chosen by the user to identify the resource.
- project
Id string - STACKIT Project ID to which the resource is associated.
- description string
- The description is a longer text chosen by the user to provide more context for the resource.
- region string
- The STACKIT region name the resource is located in. If not defined, the provider region is used.
- timeouts
Dremio
Instance Timeouts
- authentication
Dremio
Instance Authentication Args - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- display_
name str - The display name is a short name chosen by the user to identify the resource.
- project_
id str - STACKIT Project ID to which the resource is associated.
- description str
- The description is a longer text chosen by the user to provide more context for the resource.
- region str
- The STACKIT region name the resource is located in. If not defined, the provider region is used.
- timeouts
Dremio
Instance Timeouts Args
- authentication Property Map
- Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- display
Name String - The display name is a short name chosen by the user to identify the resource.
- project
Id String - STACKIT Project ID to which the resource is associated.
- description String
- The description is a longer text chosen by the user to provide more context for the resource.
- 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 DremioInstance resource produces the following output properties:
- Endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - The Dremio instance ID.
- Endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - The Dremio instance ID.
- endpoints object
- The available endpoints of the Dremio instance.
- id string
- The provider-assigned unique ID for this managed resource.
- instance_
id string - The Dremio instance ID.
- endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - The Dremio instance ID.
- endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Id string - The Dremio instance ID.
- endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
id str - The Dremio instance ID.
- endpoints Property Map
- The available endpoints of the Dremio instance.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - The Dremio instance ID.
Look up Existing DremioInstance Resource
Get an existing DremioInstance 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?: DremioInstanceState, opts?: CustomResourceOptions): DremioInstance@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication: Optional[DremioInstanceAuthenticationArgs] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
endpoints: Optional[DremioInstanceEndpointsArgs] = None,
instance_id: Optional[str] = None,
project_id: Optional[str] = None,
region: Optional[str] = None,
timeouts: Optional[DremioInstanceTimeoutsArgs] = None) -> DremioInstancefunc GetDremioInstance(ctx *Context, name string, id IDInput, state *DremioInstanceState, opts ...ResourceOption) (*DremioInstance, error)public static DremioInstance Get(string name, Input<string> id, DremioInstanceState? state, CustomResourceOptions? opts = null)public static DremioInstance get(String name, Output<String> id, DremioInstanceState state, CustomResourceOptions options)resources: _: type: stackit:DremioInstance get: id: ${id}import {
to = stackit_dremio_instance.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.
- Authentication
Dremio
Instance Authentication - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- Description string
- The description is a longer text chosen by the user to provide more context for the resource.
- Display
Name string - The display name is a short name chosen by the user to identify the resource.
- Endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- Instance
Id string - The Dremio instance ID.
- 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
Instance Timeouts
- Authentication
Dremio
Instance Authentication Args - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- Description string
- The description is a longer text chosen by the user to provide more context for the resource.
- Display
Name string - The display name is a short name chosen by the user to identify the resource.
- Endpoints
Dremio
Instance Endpoints Args - The available endpoints of the Dremio instance.
- Instance
Id string - The Dremio instance ID.
- 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
Instance Timeouts Args
- authentication object
- Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- description string
- The description is a longer text chosen by the user to provide more context for the resource.
- display_
name string - The display name is a short name chosen by the user to identify the resource.
- endpoints object
- The available endpoints of the Dremio instance.
- instance_
id string - The Dremio instance ID.
- 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
- authentication
Dremio
Instance Authentication - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- description String
- The description is a longer text chosen by the user to provide more context for the resource.
- display
Name String - The display name is a short name chosen by the user to identify the resource.
- endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- instance
Id String - The Dremio instance ID.
- 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
Instance Timeouts
- authentication
Dremio
Instance Authentication - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- description string
- The description is a longer text chosen by the user to provide more context for the resource.
- display
Name string - The display name is a short name chosen by the user to identify the resource.
- endpoints
Dremio
Instance Endpoints - The available endpoints of the Dremio instance.
- instance
Id string - The Dremio instance ID.
- 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
Instance Timeouts
- authentication
Dremio
Instance Authentication Args - Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- description str
- The description is a longer text chosen by the user to provide more context for the resource.
- display_
name str - The display name is a short name chosen by the user to identify the resource.
- endpoints
Dremio
Instance Endpoints Args - The available endpoints of the Dremio instance.
- instance_
id str - The Dremio instance ID.
- 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
Instance Timeouts Args
- authentication Property Map
- Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
- description String
- The description is a longer text chosen by the user to provide more context for the resource.
- display
Name String - The display name is a short name chosen by the user to identify the resource.
- endpoints Property Map
- The available endpoints of the Dremio instance.
- instance
Id String - The Dremio instance ID.
- 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
Supporting Types
DremioInstanceAuthentication, DremioInstanceAuthenticationArgs
- Type string
- Type of authentication (local-only, azuread, oauth).
- Azuread
Dremio
Instance Authentication Azuread - Azure Active Directory authentication configuration.
- Oauth
Dremio
Instance Authentication Oauth - OIDC authentication configuration.
- Type string
- Type of authentication (local-only, azuread, oauth).
- Azuread
Dremio
Instance Authentication Azuread - Azure Active Directory authentication configuration.
- Oauth
Dremio
Instance Authentication Oauth - OIDC authentication configuration.
- type String
- Type of authentication (local-only, azuread, oauth).
- azuread
Dremio
Instance Authentication Azuread - Azure Active Directory authentication configuration.
- oauth
Dremio
Instance Authentication Oauth - OIDC authentication configuration.
- type string
- Type of authentication (local-only, azuread, oauth).
- azuread
Dremio
Instance Authentication Azuread - Azure Active Directory authentication configuration.
- oauth
Dremio
Instance Authentication Oauth - OIDC authentication configuration.
- type str
- Type of authentication (local-only, azuread, oauth).
- azuread
Dremio
Instance Authentication Azuread - Azure Active Directory authentication configuration.
- oauth
Dremio
Instance Authentication Oauth - OIDC authentication configuration.
- type String
- Type of authentication (local-only, azuread, oauth).
- azuread Property Map
- Azure Active Directory authentication configuration.
- oauth Property Map
- OIDC authentication configuration.
DremioInstanceAuthenticationAzuread, DremioInstanceAuthenticationAzureadArgs
- string
- The Azure AD authority URL.
- Client
Id string - The Azure AD client ID.
- Client
Secret string - The Azure AD client secret.
- Redirect
Url string - The Azure AD redirect URL.
- string
- The Azure AD authority URL.
- Client
Id string - The Azure AD client ID.
- Client
Secret string - The Azure AD client secret.
- Redirect
Url string - The Azure AD redirect URL.
- string
- The Azure AD authority URL.
- client_
id string - The Azure AD client ID.
- client_
secret string - The Azure AD client secret.
- redirect_
url string - The Azure AD redirect URL.
- String
- The Azure AD authority URL.
- client
Id String - The Azure AD client ID.
- client
Secret String - The Azure AD client secret.
- redirect
Url String - The Azure AD redirect URL.
- string
- The Azure AD authority URL.
- client
Id string - The Azure AD client ID.
- client
Secret string - The Azure AD client secret.
- redirect
Url string - The Azure AD redirect URL.
- str
- The Azure AD authority URL.
- client_
id str - The Azure AD client ID.
- client_
secret str - The Azure AD client secret.
- redirect_
url str - The Azure AD redirect URL.
- String
- The Azure AD authority URL.
- client
Id String - The Azure AD client ID.
- client
Secret String - The Azure AD client secret.
- redirect
Url String - The Azure AD redirect URL.
DremioInstanceAuthenticationOauth, DremioInstanceAuthenticationOauthArgs
- string
- The Issuer location URI, where the OIDC provider configuration can be found.
- Client
Id string - The client ID assigned by the Identity Provider.
- Client
Secret string - The client secret generated by the Identity Provider.
- Jwt
Claims DremioInstance Authentication Oauth Jwt Claims - Maps fields from the JWT token to fields Dremio requires.
- Parameters
List<Dremio
Instance Authentication Oauth Parameter> - Any additional parameters the Identity Provider requires.
- Redirect
Url string - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- Scope string
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
- string
- The Issuer location URI, where the OIDC provider configuration can be found.
- Client
Id string - The client ID assigned by the Identity Provider.
- Client
Secret string - The client secret generated by the Identity Provider.
- Jwt
Claims DremioInstance Authentication Oauth Jwt Claims - Maps fields from the JWT token to fields Dremio requires.
- Parameters
[]Dremio
Instance Authentication Oauth Parameter - Any additional parameters the Identity Provider requires.
- Redirect
Url string - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- Scope string
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
- string
- The Issuer location URI, where the OIDC provider configuration can be found.
- client_
id string - The client ID assigned by the Identity Provider.
- client_
secret string - The client secret generated by the Identity Provider.
- jwt_
claims object - Maps fields from the JWT token to fields Dremio requires.
- parameters list(object)
- Any additional parameters the Identity Provider requires.
- redirect_
url string - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- scope string
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
- String
- The Issuer location URI, where the OIDC provider configuration can be found.
- client
Id String - The client ID assigned by the Identity Provider.
- client
Secret String - The client secret generated by the Identity Provider.
- jwt
Claims DremioInstance Authentication Oauth Jwt Claims - Maps fields from the JWT token to fields Dremio requires.
- parameters
List<Dremio
Instance Authentication Oauth Parameter> - Any additional parameters the Identity Provider requires.
- redirect
Url String - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- scope String
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
- string
- The Issuer location URI, where the OIDC provider configuration can be found.
- client
Id string - The client ID assigned by the Identity Provider.
- client
Secret string - The client secret generated by the Identity Provider.
- jwt
Claims DremioInstance Authentication Oauth Jwt Claims - Maps fields from the JWT token to fields Dremio requires.
- parameters
Dremio
Instance Authentication Oauth Parameter[] - Any additional parameters the Identity Provider requires.
- redirect
Url string - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- scope string
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
- str
- The Issuer location URI, where the OIDC provider configuration can be found.
- client_
id str - The client ID assigned by the Identity Provider.
- client_
secret str - The client secret generated by the Identity Provider.
- jwt_
claims DremioInstance Authentication Oauth Jwt Claims - Maps fields from the JWT token to fields Dremio requires.
- parameters
Sequence[Dremio
Instance Authentication Oauth Parameter] - Any additional parameters the Identity Provider requires.
- redirect_
url str - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- scope str
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
- String
- The Issuer location URI, where the OIDC provider configuration can be found.
- client
Id String - The client ID assigned by the Identity Provider.
- client
Secret String - The client secret generated by the Identity Provider.
- jwt
Claims Property Map - Maps fields from the JWT token to fields Dremio requires.
- parameters List<Property Map>
- Any additional parameters the Identity Provider requires.
- redirect
Url String - The URL where the Dremio instance is hosted. The URL must match the redirect URL set in the Identity Provider.
- scope String
- A list of space-separated scopes. The
openidscope is always required; other scopes can vary by provider.
DremioInstanceAuthenticationOauthJwtClaims, DremioInstanceAuthenticationOauthJwtClaimsArgs
- User
Name string - Mapped user name claim (e.g. email).
- User
Name string - Mapped user name claim (e.g. email).
- user_
name string - Mapped user name claim (e.g. email).
- user
Name String - Mapped user name claim (e.g. email).
- user
Name string - Mapped user name claim (e.g. email).
- user_
name str - Mapped user name claim (e.g. email).
- user
Name String - Mapped user name claim (e.g. email).
DremioInstanceAuthenticationOauthParameter, DremioInstanceAuthenticationOauthParameterArgs
DremioInstanceEndpoints, DremioInstanceEndpointsArgs
- Arrow
Flight string - The arrow flight endpoint of the Dremio instance.
- Catalog string
- The Apache Iceberg endpoint of the Dremio instance.
- Ui string
- The UI endpoint of the Dremio instance.
- Arrow
Flight string - The arrow flight endpoint of the Dremio instance.
- Catalog string
- The Apache Iceberg endpoint of the Dremio instance.
- Ui string
- The UI endpoint of the Dremio instance.
- arrow_
flight string - The arrow flight endpoint of the Dremio instance.
- catalog string
- The Apache Iceberg endpoint of the Dremio instance.
- ui string
- The UI endpoint of the Dremio instance.
- arrow
Flight String - The arrow flight endpoint of the Dremio instance.
- catalog String
- The Apache Iceberg endpoint of the Dremio instance.
- ui String
- The UI endpoint of the Dremio instance.
- arrow
Flight string - The arrow flight endpoint of the Dremio instance.
- catalog string
- The Apache Iceberg endpoint of the Dremio instance.
- ui string
- The UI endpoint of the Dremio instance.
- arrow_
flight str - The arrow flight endpoint of the Dremio instance.
- catalog str
- The Apache Iceberg endpoint of the Dremio instance.
- ui str
- The UI endpoint of the Dremio instance.
- arrow
Flight String - The arrow flight endpoint of the Dremio instance.
- catalog String
- The Apache Iceberg endpoint of the Dremio instance.
- ui String
- The UI endpoint of the Dremio instance.
DremioInstanceTimeouts, DremioInstanceTimeoutsArgs
- 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