1. Registry
  2. Packages
  3. stackit
  4. API Docs
  5. DremioInstance
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 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 DremioInstanceAuthentication
    Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
    DisplayName string
    The display name is a short name chosen by the user to identify the resource.
    ProjectId 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 DremioInstanceTimeouts
    Authentication DremioInstanceAuthenticationArgs
    Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
    DisplayName string
    The display name is a short name chosen by the user to identify the resource.
    ProjectId 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 DremioInstanceTimeoutsArgs
    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 DremioInstanceAuthentication
    Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
    displayName String
    The display name is a short name chosen by the user to identify the resource.
    projectId 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 DremioInstanceTimeouts
    authentication DremioInstanceAuthentication
    Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
    displayName string
    The display name is a short name chosen by the user to identify the resource.
    projectId 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 DremioInstanceTimeouts
    authentication DremioInstanceAuthenticationArgs
    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 DremioInstanceTimeoutsArgs
    authentication Property Map
    Dremio instance authentication settings. A change here triggers a Dremio restart and will incur downtime.
    displayName String
    The display name is a short name chosen by the user to identify the resource.
    projectId 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 DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The Dremio instance ID.
    Endpoints DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId 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 DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The Dremio instance ID.
    endpoints DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    The Dremio instance ID.
    endpoints DremioInstanceEndpoints
    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.
    instanceId 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) -> DremioInstance
    func 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.
    The following state arguments are supported:
    Authentication DremioInstanceAuthentication
    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.
    DisplayName string
    The display name is a short name chosen by the user to identify the resource.
    Endpoints DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    InstanceId string
    The Dremio instance ID.
    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 DremioInstanceTimeouts
    Authentication DremioInstanceAuthenticationArgs
    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.
    DisplayName string
    The display name is a short name chosen by the user to identify the resource.
    Endpoints DremioInstanceEndpointsArgs
    The available endpoints of the Dremio instance.
    InstanceId string
    The Dremio instance ID.
    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 DremioInstanceTimeoutsArgs
    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 DremioInstanceAuthentication
    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.
    displayName String
    The display name is a short name chosen by the user to identify the resource.
    endpoints DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    instanceId String
    The Dremio instance ID.
    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 DremioInstanceTimeouts
    authentication DremioInstanceAuthentication
    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.
    displayName string
    The display name is a short name chosen by the user to identify the resource.
    endpoints DremioInstanceEndpoints
    The available endpoints of the Dremio instance.
    instanceId string
    The Dremio instance ID.
    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 DremioInstanceTimeouts
    authentication DremioInstanceAuthenticationArgs
    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 DremioInstanceEndpointsArgs
    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 DremioInstanceTimeoutsArgs
    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.
    displayName 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.
    instanceId String
    The Dremio instance ID.
    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

    Supporting Types

    DremioInstanceAuthentication, DremioInstanceAuthenticationArgs

    Type string
    Type of authentication (local-only, azuread, oauth).
    Azuread DremioInstanceAuthenticationAzuread
    Azure Active Directory authentication configuration.
    Oauth DremioInstanceAuthenticationOauth
    OIDC authentication configuration.
    Type string
    Type of authentication (local-only, azuread, oauth).
    Azuread DremioInstanceAuthenticationAzuread
    Azure Active Directory authentication configuration.
    Oauth DremioInstanceAuthenticationOauth
    OIDC authentication configuration.
    type string
    Type of authentication (local-only, azuread, oauth).
    azuread object
    Azure Active Directory authentication configuration.
    oauth object
    OIDC authentication configuration.
    type String
    Type of authentication (local-only, azuread, oauth).
    azuread DremioInstanceAuthenticationAzuread
    Azure Active Directory authentication configuration.
    oauth DremioInstanceAuthenticationOauth
    OIDC authentication configuration.
    type string
    Type of authentication (local-only, azuread, oauth).
    azuread DremioInstanceAuthenticationAzuread
    Azure Active Directory authentication configuration.
    oauth DremioInstanceAuthenticationOauth
    OIDC authentication configuration.
    type str
    Type of authentication (local-only, azuread, oauth).
    azuread DremioInstanceAuthenticationAzuread
    Azure Active Directory authentication configuration.
    oauth DremioInstanceAuthenticationOauth
    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

    AuthorityUrl string
    The Azure AD authority URL.
    ClientId string
    The Azure AD client ID.
    ClientSecret string
    The Azure AD client secret.
    RedirectUrl string
    The Azure AD redirect URL.
    AuthorityUrl string
    The Azure AD authority URL.
    ClientId string
    The Azure AD client ID.
    ClientSecret string
    The Azure AD client secret.
    RedirectUrl string
    The Azure AD redirect URL.
    authority_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.
    authorityUrl String
    The Azure AD authority URL.
    clientId String
    The Azure AD client ID.
    clientSecret String
    The Azure AD client secret.
    redirectUrl String
    The Azure AD redirect URL.
    authorityUrl string
    The Azure AD authority URL.
    clientId string
    The Azure AD client ID.
    clientSecret string
    The Azure AD client secret.
    redirectUrl string
    The Azure AD redirect URL.
    authority_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.
    authorityUrl String
    The Azure AD authority URL.
    clientId String
    The Azure AD client ID.
    clientSecret String
    The Azure AD client secret.
    redirectUrl String
    The Azure AD redirect URL.

    DremioInstanceAuthenticationOauth, DremioInstanceAuthenticationOauthArgs

    AuthorityUrl string
    The Issuer location URI, where the OIDC provider configuration can be found.
    ClientId string
    The client ID assigned by the Identity Provider.
    ClientSecret string
    The client secret generated by the Identity Provider.
    JwtClaims DremioInstanceAuthenticationOauthJwtClaims
    Maps fields from the JWT token to fields Dremio requires.
    Parameters List<DremioInstanceAuthenticationOauthParameter>
    Any additional parameters the Identity Provider requires.
    RedirectUrl 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 openid scope is always required; other scopes can vary by provider.
    AuthorityUrl string
    The Issuer location URI, where the OIDC provider configuration can be found.
    ClientId string
    The client ID assigned by the Identity Provider.
    ClientSecret string
    The client secret generated by the Identity Provider.
    JwtClaims DremioInstanceAuthenticationOauthJwtClaims
    Maps fields from the JWT token to fields Dremio requires.
    Parameters []DremioInstanceAuthenticationOauthParameter
    Any additional parameters the Identity Provider requires.
    RedirectUrl 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 openid scope is always required; other scopes can vary by provider.
    authority_url 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 openid scope is always required; other scopes can vary by provider.
    authorityUrl String
    The Issuer location URI, where the OIDC provider configuration can be found.
    clientId String
    The client ID assigned by the Identity Provider.
    clientSecret String
    The client secret generated by the Identity Provider.
    jwtClaims DremioInstanceAuthenticationOauthJwtClaims
    Maps fields from the JWT token to fields Dremio requires.
    parameters List<DremioInstanceAuthenticationOauthParameter>
    Any additional parameters the Identity Provider requires.
    redirectUrl 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 openid scope is always required; other scopes can vary by provider.
    authorityUrl string
    The Issuer location URI, where the OIDC provider configuration can be found.
    clientId string
    The client ID assigned by the Identity Provider.
    clientSecret string
    The client secret generated by the Identity Provider.
    jwtClaims DremioInstanceAuthenticationOauthJwtClaims
    Maps fields from the JWT token to fields Dremio requires.
    parameters DremioInstanceAuthenticationOauthParameter[]
    Any additional parameters the Identity Provider requires.
    redirectUrl 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 openid scope is always required; other scopes can vary by provider.
    authority_url 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 DremioInstanceAuthenticationOauthJwtClaims
    Maps fields from the JWT token to fields Dremio requires.
    parameters Sequence[DremioInstanceAuthenticationOauthParameter]
    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 openid scope is always required; other scopes can vary by provider.
    authorityUrl String
    The Issuer location URI, where the OIDC provider configuration can be found.
    clientId String
    The client ID assigned by the Identity Provider.
    clientSecret String
    The client secret generated by the Identity Provider.
    jwtClaims Property Map
    Maps fields from the JWT token to fields Dremio requires.
    parameters List<Property Map>
    Any additional parameters the Identity Provider requires.
    redirectUrl 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 openid scope is always required; other scopes can vary by provider.

    DremioInstanceAuthenticationOauthJwtClaims, DremioInstanceAuthenticationOauthJwtClaimsArgs

    UserName string
    Mapped user name claim (e.g. email).
    UserName string
    Mapped user name claim (e.g. email).
    user_name string
    Mapped user name claim (e.g. email).
    userName String
    Mapped user name claim (e.g. email).
    userName string
    Mapped user name claim (e.g. email).
    user_name str
    Mapped user name claim (e.g. email).
    userName String
    Mapped user name claim (e.g. email).

    DremioInstanceAuthenticationOauthParameter, DremioInstanceAuthenticationOauthParameterArgs

    Name string
    Parameter name.
    Value string
    Parameter value.
    Name string
    Parameter name.
    Value string
    Parameter value.
    name string
    Parameter name.
    value string
    Parameter value.
    name String
    Parameter name.
    value String
    Parameter value.
    name string
    Parameter name.
    value string
    Parameter value.
    name str
    Parameter name.
    value str
    Parameter value.
    name String
    Parameter name.
    value String
    Parameter value.

    DremioInstanceEndpoints, DremioInstanceEndpointsArgs

    ArrowFlight 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.
    ArrowFlight 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.
    arrowFlight 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.
    arrowFlight 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.
    arrowFlight 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 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