1. Packages
  2. Keycloak Provider
  3. API Docs
  4. AttributeImporterIdentityProviderMapper
Keycloak v6.2.1 published on Monday, Feb 3, 2025 by Pulumi

keycloak.AttributeImporterIdentityProviderMapper

Explore with Pulumi AI

keycloak logo
Keycloak v6.2.1 published on Monday, Feb 3, 2025 by Pulumi

    Allows for creating and managing an attribute importer identity provider mapper within Keycloak.

    The attribute importer mapper can be used to map attributes from externally defined users to attributes or properties of the imported Keycloak user:

    • For the OIDC identity provider, this will map a claim on the ID or access token to an attribute for the imported Keycloak user.
    • For the SAML identity provider, this will map a SAML attribute found within the assertion to an attribute for the imported Keycloak user.
    • For social identity providers, this will map a JSON field from the user profile to an attribute for the imported Keycloak user.

    If you are using Keycloak 10 or higher, you will need to specify the extra_config argument in order to define a syncMode for the mapper.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as keycloak from "@pulumi/keycloak";
    
    const realm = new keycloak.Realm("realm", {
        realm: "my-realm",
        enabled: true,
    });
    const oidc = new keycloak.oidc.IdentityProvider("oidc", {
        realm: realm.id,
        alias: "oidc",
        authorizationUrl: "https://example.com/auth",
        tokenUrl: "https://example.com/token",
        clientId: "example_id",
        clientSecret: "example_token",
        defaultScopes: "openid random profile",
    });
    const oidcAttributeImporterIdentityProviderMapper = new keycloak.AttributeImporterIdentityProviderMapper("oidc", {
        realm: realm.id,
        name: "email-attribute-importer",
        claimName: "my-email-claim",
        identityProviderAlias: oidc.alias,
        userAttribute: "email",
        extraConfig: {
            syncMode: "INHERIT",
        },
    });
    
    import pulumi
    import pulumi_keycloak as keycloak
    
    realm = keycloak.Realm("realm",
        realm="my-realm",
        enabled=True)
    oidc = keycloak.oidc.IdentityProvider("oidc",
        realm=realm.id,
        alias="oidc",
        authorization_url="https://example.com/auth",
        token_url="https://example.com/token",
        client_id="example_id",
        client_secret="example_token",
        default_scopes="openid random profile")
    oidc_attribute_importer_identity_provider_mapper = keycloak.AttributeImporterIdentityProviderMapper("oidc",
        realm=realm.id,
        name="email-attribute-importer",
        claim_name="my-email-claim",
        identity_provider_alias=oidc.alias,
        user_attribute="email",
        extra_config={
            "syncMode": "INHERIT",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak"
    	"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak/oidc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		realm, err := keycloak.NewRealm(ctx, "realm", &keycloak.RealmArgs{
    			Realm:   pulumi.String("my-realm"),
    			Enabled: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		oidc, err := oidc.NewIdentityProvider(ctx, "oidc", &oidc.IdentityProviderArgs{
    			Realm:            realm.ID(),
    			Alias:            pulumi.String("oidc"),
    			AuthorizationUrl: pulumi.String("https://example.com/auth"),
    			TokenUrl:         pulumi.String("https://example.com/token"),
    			ClientId:         pulumi.String("example_id"),
    			ClientSecret:     pulumi.String("example_token"),
    			DefaultScopes:    pulumi.String("openid random profile"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = keycloak.NewAttributeImporterIdentityProviderMapper(ctx, "oidc", &keycloak.AttributeImporterIdentityProviderMapperArgs{
    			Realm:                 realm.ID(),
    			Name:                  pulumi.String("email-attribute-importer"),
    			ClaimName:             pulumi.String("my-email-claim"),
    			IdentityProviderAlias: oidc.Alias,
    			UserAttribute:         pulumi.String("email"),
    			ExtraConfig: pulumi.StringMap{
    				"syncMode": pulumi.String("INHERIT"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Keycloak = Pulumi.Keycloak;
    
    return await Deployment.RunAsync(() => 
    {
        var realm = new Keycloak.Realm("realm", new()
        {
            RealmName = "my-realm",
            Enabled = true,
        });
    
        var oidc = new Keycloak.Oidc.IdentityProvider("oidc", new()
        {
            Realm = realm.Id,
            Alias = "oidc",
            AuthorizationUrl = "https://example.com/auth",
            TokenUrl = "https://example.com/token",
            ClientId = "example_id",
            ClientSecret = "example_token",
            DefaultScopes = "openid random profile",
        });
    
        var oidcAttributeImporterIdentityProviderMapper = new Keycloak.AttributeImporterIdentityProviderMapper("oidc", new()
        {
            Realm = realm.Id,
            Name = "email-attribute-importer",
            ClaimName = "my-email-claim",
            IdentityProviderAlias = oidc.Alias,
            UserAttribute = "email",
            ExtraConfig = 
            {
                { "syncMode", "INHERIT" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.keycloak.Realm;
    import com.pulumi.keycloak.RealmArgs;
    import com.pulumi.keycloak.oidc.IdentityProvider;
    import com.pulumi.keycloak.oidc.IdentityProviderArgs;
    import com.pulumi.keycloak.AttributeImporterIdentityProviderMapper;
    import com.pulumi.keycloak.AttributeImporterIdentityProviderMapperArgs;
    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) {
            var realm = new Realm("realm", RealmArgs.builder()
                .realm("my-realm")
                .enabled(true)
                .build());
    
            var oidc = new IdentityProvider("oidc", IdentityProviderArgs.builder()
                .realm(realm.id())
                .alias("oidc")
                .authorizationUrl("https://example.com/auth")
                .tokenUrl("https://example.com/token")
                .clientId("example_id")
                .clientSecret("example_token")
                .defaultScopes("openid random profile")
                .build());
    
            var oidcAttributeImporterIdentityProviderMapper = new AttributeImporterIdentityProviderMapper("oidcAttributeImporterIdentityProviderMapper", AttributeImporterIdentityProviderMapperArgs.builder()
                .realm(realm.id())
                .name("email-attribute-importer")
                .claimName("my-email-claim")
                .identityProviderAlias(oidc.alias())
                .userAttribute("email")
                .extraConfig(Map.of("syncMode", "INHERIT"))
                .build());
    
        }
    }
    
    resources:
      realm:
        type: keycloak:Realm
        properties:
          realm: my-realm
          enabled: true
      oidc:
        type: keycloak:oidc:IdentityProvider
        properties:
          realm: ${realm.id}
          alias: oidc
          authorizationUrl: https://example.com/auth
          tokenUrl: https://example.com/token
          clientId: example_id
          clientSecret: example_token
          defaultScopes: openid random profile
      oidcAttributeImporterIdentityProviderMapper:
        type: keycloak:AttributeImporterIdentityProviderMapper
        name: oidc
        properties:
          realm: ${realm.id}
          name: email-attribute-importer
          claimName: my-email-claim
          identityProviderAlias: ${oidc.alias}
          userAttribute: email
          extraConfig:
            syncMode: INHERIT
    

    Create AttributeImporterIdentityProviderMapper Resource

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

    Constructor syntax

    new AttributeImporterIdentityProviderMapper(name: string, args: AttributeImporterIdentityProviderMapperArgs, opts?: CustomResourceOptions);
    @overload
    def AttributeImporterIdentityProviderMapper(resource_name: str,
                                                args: AttributeImporterIdentityProviderMapperArgs,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def AttributeImporterIdentityProviderMapper(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                identity_provider_alias: Optional[str] = None,
                                                realm: Optional[str] = None,
                                                user_attribute: Optional[str] = None,
                                                attribute_friendly_name: Optional[str] = None,
                                                attribute_name: Optional[str] = None,
                                                claim_name: Optional[str] = None,
                                                extra_config: Optional[Mapping[str, str]] = None,
                                                name: Optional[str] = None)
    func NewAttributeImporterIdentityProviderMapper(ctx *Context, name string, args AttributeImporterIdentityProviderMapperArgs, opts ...ResourceOption) (*AttributeImporterIdentityProviderMapper, error)
    public AttributeImporterIdentityProviderMapper(string name, AttributeImporterIdentityProviderMapperArgs args, CustomResourceOptions? opts = null)
    public AttributeImporterIdentityProviderMapper(String name, AttributeImporterIdentityProviderMapperArgs args)
    public AttributeImporterIdentityProviderMapper(String name, AttributeImporterIdentityProviderMapperArgs args, CustomResourceOptions options)
    
    type: keycloak:AttributeImporterIdentityProviderMapper
    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 AttributeImporterIdentityProviderMapperArgs
    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 AttributeImporterIdentityProviderMapperArgs
    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 AttributeImporterIdentityProviderMapperArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AttributeImporterIdentityProviderMapperArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AttributeImporterIdentityProviderMapperArgs
    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 attributeImporterIdentityProviderMapperResource = new Keycloak.AttributeImporterIdentityProviderMapper("attributeImporterIdentityProviderMapperResource", new()
    {
        IdentityProviderAlias = "string",
        Realm = "string",
        UserAttribute = "string",
        AttributeFriendlyName = "string",
        AttributeName = "string",
        ClaimName = "string",
        ExtraConfig = 
        {
            { "string", "string" },
        },
        Name = "string",
    });
    
    example, err := keycloak.NewAttributeImporterIdentityProviderMapper(ctx, "attributeImporterIdentityProviderMapperResource", &keycloak.AttributeImporterIdentityProviderMapperArgs{
    	IdentityProviderAlias: pulumi.String("string"),
    	Realm:                 pulumi.String("string"),
    	UserAttribute:         pulumi.String("string"),
    	AttributeFriendlyName: pulumi.String("string"),
    	AttributeName:         pulumi.String("string"),
    	ClaimName:             pulumi.String("string"),
    	ExtraConfig: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var attributeImporterIdentityProviderMapperResource = new AttributeImporterIdentityProviderMapper("attributeImporterIdentityProviderMapperResource", AttributeImporterIdentityProviderMapperArgs.builder()
        .identityProviderAlias("string")
        .realm("string")
        .userAttribute("string")
        .attributeFriendlyName("string")
        .attributeName("string")
        .claimName("string")
        .extraConfig(Map.of("string", "string"))
        .name("string")
        .build());
    
    attribute_importer_identity_provider_mapper_resource = keycloak.AttributeImporterIdentityProviderMapper("attributeImporterIdentityProviderMapperResource",
        identity_provider_alias="string",
        realm="string",
        user_attribute="string",
        attribute_friendly_name="string",
        attribute_name="string",
        claim_name="string",
        extra_config={
            "string": "string",
        },
        name="string")
    
    const attributeImporterIdentityProviderMapperResource = new keycloak.AttributeImporterIdentityProviderMapper("attributeImporterIdentityProviderMapperResource", {
        identityProviderAlias: "string",
        realm: "string",
        userAttribute: "string",
        attributeFriendlyName: "string",
        attributeName: "string",
        claimName: "string",
        extraConfig: {
            string: "string",
        },
        name: "string",
    });
    
    type: keycloak:AttributeImporterIdentityProviderMapper
    properties:
        attributeFriendlyName: string
        attributeName: string
        claimName: string
        extraConfig:
            string: string
        identityProviderAlias: string
        name: string
        realm: string
        userAttribute: string
    

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

    IdentityProviderAlias string
    The alias of the associated identity provider.
    Realm string
    The name of the realm.
    UserAttribute string
    The user attribute or property name to store the mapped result.
    AttributeFriendlyName string
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    AttributeName string
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    ClaimName string
    For OIDC based providers, this is the name of the claim to use.
    ExtraConfig Dictionary<string, string>
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    Name string
    The name of the mapper.
    IdentityProviderAlias string
    The alias of the associated identity provider.
    Realm string
    The name of the realm.
    UserAttribute string
    The user attribute or property name to store the mapped result.
    AttributeFriendlyName string
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    AttributeName string
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    ClaimName string
    For OIDC based providers, this is the name of the claim to use.
    ExtraConfig map[string]string
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    Name string
    The name of the mapper.
    identityProviderAlias String
    The alias of the associated identity provider.
    realm String
    The name of the realm.
    userAttribute String
    The user attribute or property name to store the mapped result.
    attributeFriendlyName String
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attributeName String
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claimName String
    For OIDC based providers, this is the name of the claim to use.
    extraConfig Map<String,String>
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    name String
    The name of the mapper.
    identityProviderAlias string
    The alias of the associated identity provider.
    realm string
    The name of the realm.
    userAttribute string
    The user attribute or property name to store the mapped result.
    attributeFriendlyName string
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attributeName string
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claimName string
    For OIDC based providers, this is the name of the claim to use.
    extraConfig {[key: string]: string}
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    name string
    The name of the mapper.
    identity_provider_alias str
    The alias of the associated identity provider.
    realm str
    The name of the realm.
    user_attribute str
    The user attribute or property name to store the mapped result.
    attribute_friendly_name str
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attribute_name str
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claim_name str
    For OIDC based providers, this is the name of the claim to use.
    extra_config Mapping[str, str]
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    name str
    The name of the mapper.
    identityProviderAlias String
    The alias of the associated identity provider.
    realm String
    The name of the realm.
    userAttribute String
    The user attribute or property name to store the mapped result.
    attributeFriendlyName String
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attributeName String
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claimName String
    For OIDC based providers, this is the name of the claim to use.
    extraConfig Map<String>
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    name String
    The name of the mapper.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AttributeImporterIdentityProviderMapper 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 AttributeImporterIdentityProviderMapper Resource

    Get an existing AttributeImporterIdentityProviderMapper 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?: AttributeImporterIdentityProviderMapperState, opts?: CustomResourceOptions): AttributeImporterIdentityProviderMapper
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attribute_friendly_name: Optional[str] = None,
            attribute_name: Optional[str] = None,
            claim_name: Optional[str] = None,
            extra_config: Optional[Mapping[str, str]] = None,
            identity_provider_alias: Optional[str] = None,
            name: Optional[str] = None,
            realm: Optional[str] = None,
            user_attribute: Optional[str] = None) -> AttributeImporterIdentityProviderMapper
    func GetAttributeImporterIdentityProviderMapper(ctx *Context, name string, id IDInput, state *AttributeImporterIdentityProviderMapperState, opts ...ResourceOption) (*AttributeImporterIdentityProviderMapper, error)
    public static AttributeImporterIdentityProviderMapper Get(string name, Input<string> id, AttributeImporterIdentityProviderMapperState? state, CustomResourceOptions? opts = null)
    public static AttributeImporterIdentityProviderMapper get(String name, Output<String> id, AttributeImporterIdentityProviderMapperState state, CustomResourceOptions options)
    resources:  _:    type: keycloak:AttributeImporterIdentityProviderMapper    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:
    AttributeFriendlyName string
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    AttributeName string
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    ClaimName string
    For OIDC based providers, this is the name of the claim to use.
    ExtraConfig Dictionary<string, string>
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    IdentityProviderAlias string
    The alias of the associated identity provider.
    Name string
    The name of the mapper.
    Realm string
    The name of the realm.
    UserAttribute string
    The user attribute or property name to store the mapped result.
    AttributeFriendlyName string
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    AttributeName string
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    ClaimName string
    For OIDC based providers, this is the name of the claim to use.
    ExtraConfig map[string]string
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    IdentityProviderAlias string
    The alias of the associated identity provider.
    Name string
    The name of the mapper.
    Realm string
    The name of the realm.
    UserAttribute string
    The user attribute or property name to store the mapped result.
    attributeFriendlyName String
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attributeName String
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claimName String
    For OIDC based providers, this is the name of the claim to use.
    extraConfig Map<String,String>
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    identityProviderAlias String
    The alias of the associated identity provider.
    name String
    The name of the mapper.
    realm String
    The name of the realm.
    userAttribute String
    The user attribute or property name to store the mapped result.
    attributeFriendlyName string
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attributeName string
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claimName string
    For OIDC based providers, this is the name of the claim to use.
    extraConfig {[key: string]: string}
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    identityProviderAlias string
    The alias of the associated identity provider.
    name string
    The name of the mapper.
    realm string
    The name of the realm.
    userAttribute string
    The user attribute or property name to store the mapped result.
    attribute_friendly_name str
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attribute_name str
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claim_name str
    For OIDC based providers, this is the name of the claim to use.
    extra_config Mapping[str, str]
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    identity_provider_alias str
    The alias of the associated identity provider.
    name str
    The name of the mapper.
    realm str
    The name of the realm.
    user_attribute str
    The user attribute or property name to store the mapped result.
    attributeFriendlyName String
    For SAML based providers, this is the friendly name of the attribute to search for in the assertion. Conflicts with attribute_name.
    attributeName String
    For SAML based providers, this is the name of the attribute to search for in the assertion. Conflicts with attribute_friendly_name.
    claimName String
    For OIDC based providers, this is the name of the claim to use.
    extraConfig Map<String>
    Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
    identityProviderAlias String
    The alias of the associated identity provider.
    name String
    The name of the mapper.
    realm String
    The name of the realm.
    userAttribute String
    The user attribute or property name to store the mapped result.

    Import

    Identity provider mappers can be imported using the format {{realm_id}}/{{idp_alias}}/{{idp_mapper_id}}, where idp_alias is the identity provider alias, and idp_mapper_id is the unique ID that Keycloak

    assigns to the mapper upon creation. This value can be found in the URI when editing this mapper in the GUI, and is typically a GUID.

    Example:

    bash

    $ pulumi import keycloak:index/attributeImporterIdentityProviderMapper:AttributeImporterIdentityProviderMapper test_mapper my-realm/my-mapper/f446db98-7133-4e30-b18a-3d28fde7ca1b
    

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

    Package Details

    Repository
    Keycloak pulumi/pulumi-keycloak
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the keycloak Terraform Provider.
    keycloak logo
    Keycloak v6.2.1 published on Monday, Feb 3, 2025 by Pulumi