published on Thursday, May 14, 2026 by pulumiverse
published on Thursday, May 14, 2026 by pulumiverse
SCIM (System for Cross-domain Identity Management) resource allows you to enable or disable SCIM for an organization.
SCIM is a standard for automating the exchange of user identity information between identity domains, or IT systems. When enabled, it allows for automated provisioning and deprovisioning of user accounts.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
//## Enable IAM SCIM for an organization
const main = new scaleway.iam.Scim("main", {organizationId: "11111111-1111-1111-1111-111111111111"});
import pulumi
import pulumiverse_scaleway as scaleway
### Enable IAM SCIM for an organization
main = scaleway.iam.Scim("main", organization_id="11111111-1111-1111-1111-111111111111")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/iam"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// ## Enable IAM SCIM for an organization
_, err := iam.NewScim(ctx, "main", &iam.ScimArgs{
OrganizationId: pulumi.String("11111111-1111-1111-1111-111111111111"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
//## Enable IAM SCIM for an organization
var main = new Scaleway.Iam.Scim("main", new()
{
OrganizationId = "11111111-1111-1111-1111-111111111111",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.iam.Scim;
import com.pulumi.scaleway.iam.ScimArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 IAM SCIM for an organization
var main = new Scim("main", ScimArgs.builder()
.organizationId("11111111-1111-1111-1111-111111111111")
.build());
}
}
resources:
### Enable IAM SCIM for an organization
main:
type: scaleway:iam:Scim
properties:
organizationId: 11111111-1111-1111-1111-111111111111
Example coming soon!
Create Scim Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Scim(name: string, args?: ScimArgs, opts?: CustomResourceOptions);@overload
def Scim(resource_name: str,
args: Optional[ScimArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Scim(resource_name: str,
opts: Optional[ResourceOptions] = None,
organization_id: Optional[str] = None)func NewScim(ctx *Context, name string, args *ScimArgs, opts ...ResourceOption) (*Scim, error)public Scim(string name, ScimArgs? args = null, CustomResourceOptions? opts = null)type: scaleway:iam:Scim
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "scaleway_iam_scim" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ScimArgs
- 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 ScimArgs
- 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 ScimArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ScimArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ScimArgs
- 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 scimResource = new Scaleway.Iam.Scim("scimResource", new()
{
OrganizationId = "string",
});
example, err := iam.NewScim(ctx, "scimResource", &iam.ScimArgs{
OrganizationId: pulumi.String("string"),
})
resource "scaleway_iam_scim" "scimResource" {
organization_id = "string"
}
var scimResource = new Scim("scimResource", ScimArgs.builder()
.organizationId("string")
.build());
scim_resource = scaleway.iam.Scim("scimResource", organization_id="string")
const scimResource = new scaleway.iam.Scim("scimResource", {organizationId: "string"});
type: scaleway:iam:Scim
properties:
organizationId: string
Scim 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 Scim resource accepts the following input properties:
- Organization
Id string - The organization ID. If not provided, the default organization configured in the provider is used.
- Organization
Id string - The organization ID. If not provided, the default organization configured in the provider is used.
- organization_
id string - The organization ID. If not provided, the default organization configured in the provider is used.
- organization
Id String - The organization ID. If not provided, the default organization configured in the provider is used.
- organization
Id string - The organization ID. If not provided, the default organization configured in the provider is used.
- organization_
id str - The organization ID. If not provided, the default organization configured in the provider is used.
- organization
Id String - The organization ID. If not provided, the default organization configured in the provider is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the Scim resource produces the following output properties:
- created_
at string - The date and time of SCIM configuration creation.
- id string
- The provider-assigned unique ID for this managed resource.
- created_
at str - The date and time of SCIM configuration creation.
- id str
- The provider-assigned unique ID for this managed resource.
Look up Existing Scim Resource
Get an existing Scim 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?: ScimState, opts?: CustomResourceOptions): Scim@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
organization_id: Optional[str] = None) -> Scimfunc GetScim(ctx *Context, name string, id IDInput, state *ScimState, opts ...ResourceOption) (*Scim, error)public static Scim Get(string name, Input<string> id, ScimState? state, CustomResourceOptions? opts = null)public static Scim get(String name, Output<String> id, ScimState state, CustomResourceOptions options)resources: _: type: scaleway:iam:Scim get: id: ${id}import {
to = scaleway_iam_scim.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.
- Created
At string - The date and time of SCIM configuration creation.
- Organization
Id string - The organization ID. If not provided, the default organization configured in the provider is used.
- Created
At string - The date and time of SCIM configuration creation.
- Organization
Id string - The organization ID. If not provided, the default organization configured in the provider is used.
- created_
at string - The date and time of SCIM configuration creation.
- organization_
id string - The organization ID. If not provided, the default organization configured in the provider is used.
- created
At String - The date and time of SCIM configuration creation.
- organization
Id String - The organization ID. If not provided, the default organization configured in the provider is used.
- created
At string - The date and time of SCIM configuration creation.
- organization
Id string - The organization ID. If not provided, the default organization configured in the provider is used.
- created_
at str - The date and time of SCIM configuration creation.
- organization_
id str - The organization ID. If not provided, the default organization configured in the provider is used.
- created
At String - The date and time of SCIM configuration creation.
- organization
Id String - The organization ID. If not provided, the default organization configured in the provider is used.
Import
SCIM can be imported using the organization ID:
$ pulumi import scaleway:iam/scim:Scim main 11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scalewayTerraform Provider.
published on Thursday, May 14, 2026 by pulumiverse