1. Packages
  2. Packages
  3. dbt Cloud Provider
  4. API Docs
  5. ScimConfig
Viewing docs for dbt Cloud v1.8.1
published on Friday, May 8, 2026 by Pulumi
dbtcloud logo
Viewing docs for dbt Cloud v1.8.1
published on Friday, May 8, 2026 by Pulumi

    Manages the SCIM configuration for a dbt Cloud account. SCIM (System for Cross-domain Identity Management) allows identity providers such as Okta and Azure AD to automatically provision and deprovision users and groups.

    This is a singleton resource — only one SCIM configuration exists per account. Destroying the resource resets the configuration to its defaults (SCIM disabled, manual updates allowed, license type not SCIM-controlled).

    Requires the SCIM feature to be enabled on the account (enterprise plans only).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dbtcloud from "@pulumi/dbtcloud";
    
    // Enable SCIM with strict IdP control — no manual updates, license type managed by SCIM.
    // This is the recommended configuration when using an identity provider such as
    // Okta or Azure AD as the single source of truth for user provisioning.
    const main = new dbtcloud.ScimConfig("main", {
        enabled: true,
        manualUpdatesAllowed: false,
        scimControlledLicenseType: true,
    });
    
    import pulumi
    import pulumi_dbtcloud as dbtcloud
    
    # Enable SCIM with strict IdP control — no manual updates, license type managed by SCIM.
    # This is the recommended configuration when using an identity provider such as
    # Okta or Azure AD as the single source of truth for user provisioning.
    main = dbtcloud.ScimConfig("main",
        enabled=True,
        manual_updates_allowed=False,
        scim_controlled_license_type=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Enable SCIM with strict IdP control — no manual updates, license type managed by SCIM.
    		// This is the recommended configuration when using an identity provider such as
    		// Okta or Azure AD as the single source of truth for user provisioning.
    		_, err := dbtcloud.NewScimConfig(ctx, "main", &dbtcloud.ScimConfigArgs{
    			Enabled:                   pulumi.Bool(true),
    			ManualUpdatesAllowed:      pulumi.Bool(false),
    			ScimControlledLicenseType: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DbtCloud = Pulumi.DbtCloud;
    
    return await Deployment.RunAsync(() => 
    {
        // Enable SCIM with strict IdP control — no manual updates, license type managed by SCIM.
        // This is the recommended configuration when using an identity provider such as
        // Okta or Azure AD as the single source of truth for user provisioning.
        var main = new DbtCloud.Index.ScimConfig("main", new()
        {
            Enabled = true,
            ManualUpdatesAllowed = false,
            ScimControlledLicenseType = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dbtcloud.ScimConfig;
    import com.pulumi.dbtcloud.ScimConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Enable SCIM with strict IdP control — no manual updates, license type managed by SCIM.
            // This is the recommended configuration when using an identity provider such as
            // Okta or Azure AD as the single source of truth for user provisioning.
            var main = new ScimConfig("main", ScimConfigArgs.builder()
                .enabled(true)
                .manualUpdatesAllowed(false)
                .scimControlledLicenseType(true)
                .build());
    
        }
    }
    
    resources:
      # Enable SCIM with strict IdP control — no manual updates, license type managed by SCIM.
      # This is the recommended configuration when using an identity provider such as
      # Okta or Azure AD as the single source of truth for user provisioning.
      main:
        type: dbtcloud:ScimConfig
        properties:
          enabled: true
          manualUpdatesAllowed: false
          scimControlledLicenseType: true
    

    Create ScimConfig Resource

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

    Constructor syntax

    new ScimConfig(name: string, args: ScimConfigArgs, opts?: CustomResourceOptions);
    @overload
    def ScimConfig(resource_name: str,
                   args: ScimConfigArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ScimConfig(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   enabled: Optional[bool] = None,
                   manual_updates_allowed: Optional[bool] = None,
                   scim_controlled_license_type: Optional[bool] = None)
    func NewScimConfig(ctx *Context, name string, args ScimConfigArgs, opts ...ResourceOption) (*ScimConfig, error)
    public ScimConfig(string name, ScimConfigArgs args, CustomResourceOptions? opts = null)
    public ScimConfig(String name, ScimConfigArgs args)
    public ScimConfig(String name, ScimConfigArgs args, CustomResourceOptions options)
    
    type: dbtcloud:ScimConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ScimConfigArgs
    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 ScimConfigArgs
    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 ScimConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ScimConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ScimConfigArgs
    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 scimConfigResource = new DbtCloud.ScimConfig("scimConfigResource", new()
    {
        Enabled = false,
        ManualUpdatesAllowed = false,
        ScimControlledLicenseType = false,
    });
    
    example, err := dbtcloud.NewScimConfig(ctx, "scimConfigResource", &dbtcloud.ScimConfigArgs{
    	Enabled:                   pulumi.Bool(false),
    	ManualUpdatesAllowed:      pulumi.Bool(false),
    	ScimControlledLicenseType: pulumi.Bool(false),
    })
    
    var scimConfigResource = new ScimConfig("scimConfigResource", ScimConfigArgs.builder()
        .enabled(false)
        .manualUpdatesAllowed(false)
        .scimControlledLicenseType(false)
        .build());
    
    scim_config_resource = dbtcloud.ScimConfig("scimConfigResource",
        enabled=False,
        manual_updates_allowed=False,
        scim_controlled_license_type=False)
    
    const scimConfigResource = new dbtcloud.ScimConfig("scimConfigResource", {
        enabled: false,
        manualUpdatesAllowed: false,
        scimControlledLicenseType: false,
    });
    
    type: dbtcloud:ScimConfig
    properties:
        enabled: false
        manualUpdatesAllowed: false
        scimControlledLicenseType: false
    

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

    Enabled bool
    Whether SCIM provisioning is enabled for the account.
    ManualUpdatesAllowed bool
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    ScimControlledLicenseType bool
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    Enabled bool
    Whether SCIM provisioning is enabled for the account.
    ManualUpdatesAllowed bool
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    ScimControlledLicenseType bool
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled Boolean
    Whether SCIM provisioning is enabled for the account.
    manualUpdatesAllowed Boolean
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scimControlledLicenseType Boolean
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled boolean
    Whether SCIM provisioning is enabled for the account.
    manualUpdatesAllowed boolean
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scimControlledLicenseType boolean
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled bool
    Whether SCIM provisioning is enabled for the account.
    manual_updates_allowed bool
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scim_controlled_license_type bool
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled Boolean
    Whether SCIM provisioning is enabled for the account.
    manualUpdatesAllowed Boolean
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scimControlledLicenseType Boolean
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ScimConfig Resource

    Get an existing ScimConfig 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?: ScimConfigState, opts?: CustomResourceOptions): ScimConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            manual_updates_allowed: Optional[bool] = None,
            scim_controlled_license_type: Optional[bool] = None) -> ScimConfig
    func GetScimConfig(ctx *Context, name string, id IDInput, state *ScimConfigState, opts ...ResourceOption) (*ScimConfig, error)
    public static ScimConfig Get(string name, Input<string> id, ScimConfigState? state, CustomResourceOptions? opts = null)
    public static ScimConfig get(String name, Output<String> id, ScimConfigState state, CustomResourceOptions options)
    resources:  _:    type: dbtcloud:ScimConfig    get:      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:
    Enabled bool
    Whether SCIM provisioning is enabled for the account.
    ManualUpdatesAllowed bool
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    ScimControlledLicenseType bool
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    Enabled bool
    Whether SCIM provisioning is enabled for the account.
    ManualUpdatesAllowed bool
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    ScimControlledLicenseType bool
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled Boolean
    Whether SCIM provisioning is enabled for the account.
    manualUpdatesAllowed Boolean
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scimControlledLicenseType Boolean
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled boolean
    Whether SCIM provisioning is enabled for the account.
    manualUpdatesAllowed boolean
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scimControlledLicenseType boolean
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled bool
    Whether SCIM provisioning is enabled for the account.
    manual_updates_allowed bool
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scim_controlled_license_type bool
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.
    enabled Boolean
    Whether SCIM provisioning is enabled for the account.
    manualUpdatesAllowed Boolean
    Whether administrators can manually update users and groups that are managed by SCIM. When set to ~~~false~~~, SCIM is the sole source of truth for user and group management.
    scimControlledLicenseType Boolean
    Whether the dbt Cloud license type (Developer, Read-Only, IT) is controlled by SCIM attribute mapping. When set to ~~~false~~~, license types are managed manually inside dbt Cloud.

    Import

    Singleton resource — import using the dbt Cloud account ID.

    $ pulumi import dbtcloud:index/scimConfig:ScimConfig main 12345
    

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

    Package Details

    Repository
    dbtcloud pulumi/pulumi-dbtcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dbtcloud Terraform Provider.
    dbtcloud logo
    Viewing docs for dbt Cloud v1.8.1
    published on Friday, May 8, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.