1. Packages
  2. Keycloak Provider
  3. API Docs
  4. openid
  5. UserRealmRoleProtocolMapper
Keycloak v6.4.0 published on Wednesday, Apr 16, 2025 by Pulumi

keycloak.openid.UserRealmRoleProtocolMapper

Explore with Pulumi AI

Allows for creating and managing user realm role protocol mappers within Keycloak.

User realm role protocol mappers allow you to define a claim containing the list of the realm roles.

Protocol mappers can be defined for a single client, or they can be defined for a client scope which can be shared between multiple different clients.

Example Usage

Client)

import * as pulumi from "@pulumi/pulumi";
import * as keycloak from "@pulumi/keycloak";

const realm = new keycloak.Realm("realm", {
    realm: "my-realm",
    enabled: true,
});
const openidClient = new keycloak.openid.Client("openid_client", {
    realmId: realm.id,
    clientId: "client",
    name: "client",
    enabled: true,
    accessType: "CONFIDENTIAL",
    validRedirectUris: ["http://localhost:8080/openid-callback"],
});
const userRealmRoleMapper = new keycloak.openid.UserRealmRoleProtocolMapper("user_realm_role_mapper", {
    realmId: realm.id,
    clientId: openidClient.id,
    name: "user-realm-role-mapper",
    claimName: "foo",
});
Copy
import pulumi
import pulumi_keycloak as keycloak

realm = keycloak.Realm("realm",
    realm="my-realm",
    enabled=True)
openid_client = keycloak.openid.Client("openid_client",
    realm_id=realm.id,
    client_id="client",
    name="client",
    enabled=True,
    access_type="CONFIDENTIAL",
    valid_redirect_uris=["http://localhost:8080/openid-callback"])
user_realm_role_mapper = keycloak.openid.UserRealmRoleProtocolMapper("user_realm_role_mapper",
    realm_id=realm.id,
    client_id=openid_client.id,
    name="user-realm-role-mapper",
    claim_name="foo")
Copy
package main

import (
	"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak"
	"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak/openid"
	"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
		}
		openidClient, err := openid.NewClient(ctx, "openid_client", &openid.ClientArgs{
			RealmId:    realm.ID(),
			ClientId:   pulumi.String("client"),
			Name:       pulumi.String("client"),
			Enabled:    pulumi.Bool(true),
			AccessType: pulumi.String("CONFIDENTIAL"),
			ValidRedirectUris: pulumi.StringArray{
				pulumi.String("http://localhost:8080/openid-callback"),
			},
		})
		if err != nil {
			return err
		}
		_, err = openid.NewUserRealmRoleProtocolMapper(ctx, "user_realm_role_mapper", &openid.UserRealmRoleProtocolMapperArgs{
			RealmId:   realm.ID(),
			ClientId:  openidClient.ID(),
			Name:      pulumi.String("user-realm-role-mapper"),
			ClaimName: pulumi.String("foo"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 openidClient = new Keycloak.OpenId.Client("openid_client", new()
    {
        RealmId = realm.Id,
        ClientId = "client",
        Name = "client",
        Enabled = true,
        AccessType = "CONFIDENTIAL",
        ValidRedirectUris = new[]
        {
            "http://localhost:8080/openid-callback",
        },
    });

    var userRealmRoleMapper = new Keycloak.OpenId.UserRealmRoleProtocolMapper("user_realm_role_mapper", new()
    {
        RealmId = realm.Id,
        ClientId = openidClient.Id,
        Name = "user-realm-role-mapper",
        ClaimName = "foo",
    });

});
Copy
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.openid.Client;
import com.pulumi.keycloak.openid.ClientArgs;
import com.pulumi.keycloak.openid.UserRealmRoleProtocolMapper;
import com.pulumi.keycloak.openid.UserRealmRoleProtocolMapperArgs;
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 openidClient = new Client("openidClient", ClientArgs.builder()
            .realmId(realm.id())
            .clientId("client")
            .name("client")
            .enabled(true)
            .accessType("CONFIDENTIAL")
            .validRedirectUris("http://localhost:8080/openid-callback")
            .build());

        var userRealmRoleMapper = new UserRealmRoleProtocolMapper("userRealmRoleMapper", UserRealmRoleProtocolMapperArgs.builder()
            .realmId(realm.id())
            .clientId(openidClient.id())
            .name("user-realm-role-mapper")
            .claimName("foo")
            .build());

    }
}
Copy
resources:
  realm:
    type: keycloak:Realm
    properties:
      realm: my-realm
      enabled: true
  openidClient:
    type: keycloak:openid:Client
    name: openid_client
    properties:
      realmId: ${realm.id}
      clientId: client
      name: client
      enabled: true
      accessType: CONFIDENTIAL
      validRedirectUris:
        - http://localhost:8080/openid-callback
  userRealmRoleMapper:
    type: keycloak:openid:UserRealmRoleProtocolMapper
    name: user_realm_role_mapper
    properties:
      realmId: ${realm.id}
      clientId: ${openidClient.id}
      name: user-realm-role-mapper
      claimName: foo
Copy

Client Scope)

import * as pulumi from "@pulumi/pulumi";
import * as keycloak from "@pulumi/keycloak";

const realm = new keycloak.Realm("realm", {
    realm: "my-realm",
    enabled: true,
});
const clientScope = new keycloak.openid.ClientScope("client_scope", {
    realmId: realm.id,
    name: "test-client-scope",
});
const userRealmRoleMapper = new keycloak.openid.UserRealmRoleProtocolMapper("user_realm_role_mapper", {
    realmId: realm.id,
    clientScopeId: clientScope.id,
    name: "user-realm-role-mapper",
    claimName: "foo",
});
Copy
import pulumi
import pulumi_keycloak as keycloak

realm = keycloak.Realm("realm",
    realm="my-realm",
    enabled=True)
client_scope = keycloak.openid.ClientScope("client_scope",
    realm_id=realm.id,
    name="test-client-scope")
user_realm_role_mapper = keycloak.openid.UserRealmRoleProtocolMapper("user_realm_role_mapper",
    realm_id=realm.id,
    client_scope_id=client_scope.id,
    name="user-realm-role-mapper",
    claim_name="foo")
Copy
package main

import (
	"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak"
	"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak/openid"
	"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
		}
		clientScope, err := openid.NewClientScope(ctx, "client_scope", &openid.ClientScopeArgs{
			RealmId: realm.ID(),
			Name:    pulumi.String("test-client-scope"),
		})
		if err != nil {
			return err
		}
		_, err = openid.NewUserRealmRoleProtocolMapper(ctx, "user_realm_role_mapper", &openid.UserRealmRoleProtocolMapperArgs{
			RealmId:       realm.ID(),
			ClientScopeId: clientScope.ID(),
			Name:          pulumi.String("user-realm-role-mapper"),
			ClaimName:     pulumi.String("foo"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 clientScope = new Keycloak.OpenId.ClientScope("client_scope", new()
    {
        RealmId = realm.Id,
        Name = "test-client-scope",
    });

    var userRealmRoleMapper = new Keycloak.OpenId.UserRealmRoleProtocolMapper("user_realm_role_mapper", new()
    {
        RealmId = realm.Id,
        ClientScopeId = clientScope.Id,
        Name = "user-realm-role-mapper",
        ClaimName = "foo",
    });

});
Copy
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.openid.ClientScope;
import com.pulumi.keycloak.openid.ClientScopeArgs;
import com.pulumi.keycloak.openid.UserRealmRoleProtocolMapper;
import com.pulumi.keycloak.openid.UserRealmRoleProtocolMapperArgs;
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 clientScope = new ClientScope("clientScope", ClientScopeArgs.builder()
            .realmId(realm.id())
            .name("test-client-scope")
            .build());

        var userRealmRoleMapper = new UserRealmRoleProtocolMapper("userRealmRoleMapper", UserRealmRoleProtocolMapperArgs.builder()
            .realmId(realm.id())
            .clientScopeId(clientScope.id())
            .name("user-realm-role-mapper")
            .claimName("foo")
            .build());

    }
}
Copy
resources:
  realm:
    type: keycloak:Realm
    properties:
      realm: my-realm
      enabled: true
  clientScope:
    type: keycloak:openid:ClientScope
    name: client_scope
    properties:
      realmId: ${realm.id}
      name: test-client-scope
  userRealmRoleMapper:
    type: keycloak:openid:UserRealmRoleProtocolMapper
    name: user_realm_role_mapper
    properties:
      realmId: ${realm.id}
      clientScopeId: ${clientScope.id}
      name: user-realm-role-mapper
      claimName: foo
Copy

Create UserRealmRoleProtocolMapper Resource

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

Constructor syntax

new UserRealmRoleProtocolMapper(name: string, args: UserRealmRoleProtocolMapperArgs, opts?: CustomResourceOptions);
@overload
def UserRealmRoleProtocolMapper(resource_name: str,
                                args: UserRealmRoleProtocolMapperArgs,
                                opts: Optional[ResourceOptions] = None)

@overload
def UserRealmRoleProtocolMapper(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                claim_name: Optional[str] = None,
                                realm_id: Optional[str] = None,
                                add_to_access_token: Optional[bool] = None,
                                add_to_id_token: Optional[bool] = None,
                                add_to_userinfo: Optional[bool] = None,
                                claim_value_type: Optional[str] = None,
                                client_id: Optional[str] = None,
                                client_scope_id: Optional[str] = None,
                                multivalued: Optional[bool] = None,
                                name: Optional[str] = None,
                                realm_role_prefix: Optional[str] = None)
func NewUserRealmRoleProtocolMapper(ctx *Context, name string, args UserRealmRoleProtocolMapperArgs, opts ...ResourceOption) (*UserRealmRoleProtocolMapper, error)
public UserRealmRoleProtocolMapper(string name, UserRealmRoleProtocolMapperArgs args, CustomResourceOptions? opts = null)
public UserRealmRoleProtocolMapper(String name, UserRealmRoleProtocolMapperArgs args)
public UserRealmRoleProtocolMapper(String name, UserRealmRoleProtocolMapperArgs args, CustomResourceOptions options)
type: keycloak:openid:UserRealmRoleProtocolMapper
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. UserRealmRoleProtocolMapperArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. UserRealmRoleProtocolMapperArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. UserRealmRoleProtocolMapperArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. UserRealmRoleProtocolMapperArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. UserRealmRoleProtocolMapperArgs
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 userRealmRoleProtocolMapperResource = new Keycloak.OpenId.UserRealmRoleProtocolMapper("userRealmRoleProtocolMapperResource", new()
{
    ClaimName = "string",
    RealmId = "string",
    AddToAccessToken = false,
    AddToIdToken = false,
    AddToUserinfo = false,
    ClaimValueType = "string",
    ClientId = "string",
    ClientScopeId = "string",
    Multivalued = false,
    Name = "string",
    RealmRolePrefix = "string",
});
Copy
example, err := openid.NewUserRealmRoleProtocolMapper(ctx, "userRealmRoleProtocolMapperResource", &openid.UserRealmRoleProtocolMapperArgs{
	ClaimName:        pulumi.String("string"),
	RealmId:          pulumi.String("string"),
	AddToAccessToken: pulumi.Bool(false),
	AddToIdToken:     pulumi.Bool(false),
	AddToUserinfo:    pulumi.Bool(false),
	ClaimValueType:   pulumi.String("string"),
	ClientId:         pulumi.String("string"),
	ClientScopeId:    pulumi.String("string"),
	Multivalued:      pulumi.Bool(false),
	Name:             pulumi.String("string"),
	RealmRolePrefix:  pulumi.String("string"),
})
Copy
var userRealmRoleProtocolMapperResource = new UserRealmRoleProtocolMapper("userRealmRoleProtocolMapperResource", UserRealmRoleProtocolMapperArgs.builder()
    .claimName("string")
    .realmId("string")
    .addToAccessToken(false)
    .addToIdToken(false)
    .addToUserinfo(false)
    .claimValueType("string")
    .clientId("string")
    .clientScopeId("string")
    .multivalued(false)
    .name("string")
    .realmRolePrefix("string")
    .build());
Copy
user_realm_role_protocol_mapper_resource = keycloak.openid.UserRealmRoleProtocolMapper("userRealmRoleProtocolMapperResource",
    claim_name="string",
    realm_id="string",
    add_to_access_token=False,
    add_to_id_token=False,
    add_to_userinfo=False,
    claim_value_type="string",
    client_id="string",
    client_scope_id="string",
    multivalued=False,
    name="string",
    realm_role_prefix="string")
Copy
const userRealmRoleProtocolMapperResource = new keycloak.openid.UserRealmRoleProtocolMapper("userRealmRoleProtocolMapperResource", {
    claimName: "string",
    realmId: "string",
    addToAccessToken: false,
    addToIdToken: false,
    addToUserinfo: false,
    claimValueType: "string",
    clientId: "string",
    clientScopeId: "string",
    multivalued: false,
    name: "string",
    realmRolePrefix: "string",
});
Copy
type: keycloak:openid:UserRealmRoleProtocolMapper
properties:
    addToAccessToken: false
    addToIdToken: false
    addToUserinfo: false
    claimName: string
    claimValueType: string
    clientId: string
    clientScopeId: string
    multivalued: false
    name: string
    realmId: string
    realmRolePrefix: string
Copy

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

ClaimName This property is required. string
The name of the claim to insert into a token.
RealmId
This property is required.
Changes to this property will trigger replacement.
string
The realm this protocol mapper exists within.
AddToAccessToken bool
Indicates if the property should be added as a claim to the access token. Defaults to true.
AddToIdToken bool
Indicates if the property should be added as a claim to the id token. Defaults to true.
AddToUserinfo bool
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
ClaimValueType string
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
ClientId Changes to this property will trigger replacement. string
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
ClientScopeId Changes to this property will trigger replacement. string
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
Multivalued bool
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
Name string
The display name of this protocol mapper in the GUI.
RealmRolePrefix string
A prefix for each Realm Role.
ClaimName This property is required. string
The name of the claim to insert into a token.
RealmId
This property is required.
Changes to this property will trigger replacement.
string
The realm this protocol mapper exists within.
AddToAccessToken bool
Indicates if the property should be added as a claim to the access token. Defaults to true.
AddToIdToken bool
Indicates if the property should be added as a claim to the id token. Defaults to true.
AddToUserinfo bool
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
ClaimValueType string
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
ClientId Changes to this property will trigger replacement. string
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
ClientScopeId Changes to this property will trigger replacement. string
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
Multivalued bool
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
Name string
The display name of this protocol mapper in the GUI.
RealmRolePrefix string
A prefix for each Realm Role.
claimName This property is required. String
The name of the claim to insert into a token.
realmId
This property is required.
Changes to this property will trigger replacement.
String
The realm this protocol mapper exists within.
addToAccessToken Boolean
Indicates if the property should be added as a claim to the access token. Defaults to true.
addToIdToken Boolean
Indicates if the property should be added as a claim to the id token. Defaults to true.
addToUserinfo Boolean
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claimValueType String
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
clientId Changes to this property will trigger replacement. String
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
clientScopeId Changes to this property will trigger replacement. String
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued Boolean
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name String
The display name of this protocol mapper in the GUI.
realmRolePrefix String
A prefix for each Realm Role.
claimName This property is required. string
The name of the claim to insert into a token.
realmId
This property is required.
Changes to this property will trigger replacement.
string
The realm this protocol mapper exists within.
addToAccessToken boolean
Indicates if the property should be added as a claim to the access token. Defaults to true.
addToIdToken boolean
Indicates if the property should be added as a claim to the id token. Defaults to true.
addToUserinfo boolean
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claimValueType string
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
clientId Changes to this property will trigger replacement. string
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
clientScopeId Changes to this property will trigger replacement. string
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued boolean
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name string
The display name of this protocol mapper in the GUI.
realmRolePrefix string
A prefix for each Realm Role.
claim_name This property is required. str
The name of the claim to insert into a token.
realm_id
This property is required.
Changes to this property will trigger replacement.
str
The realm this protocol mapper exists within.
add_to_access_token bool
Indicates if the property should be added as a claim to the access token. Defaults to true.
add_to_id_token bool
Indicates if the property should be added as a claim to the id token. Defaults to true.
add_to_userinfo bool
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claim_value_type str
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
client_id Changes to this property will trigger replacement. str
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
client_scope_id Changes to this property will trigger replacement. str
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued bool
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name str
The display name of this protocol mapper in the GUI.
realm_role_prefix str
A prefix for each Realm Role.
claimName This property is required. String
The name of the claim to insert into a token.
realmId
This property is required.
Changes to this property will trigger replacement.
String
The realm this protocol mapper exists within.
addToAccessToken Boolean
Indicates if the property should be added as a claim to the access token. Defaults to true.
addToIdToken Boolean
Indicates if the property should be added as a claim to the id token. Defaults to true.
addToUserinfo Boolean
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claimValueType String
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
clientId Changes to this property will trigger replacement. String
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
clientScopeId Changes to this property will trigger replacement. String
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued Boolean
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name String
The display name of this protocol mapper in the GUI.
realmRolePrefix String
A prefix for each Realm Role.

Outputs

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

Get an existing UserRealmRoleProtocolMapper 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?: UserRealmRoleProtocolMapperState, opts?: CustomResourceOptions): UserRealmRoleProtocolMapper
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        add_to_access_token: Optional[bool] = None,
        add_to_id_token: Optional[bool] = None,
        add_to_userinfo: Optional[bool] = None,
        claim_name: Optional[str] = None,
        claim_value_type: Optional[str] = None,
        client_id: Optional[str] = None,
        client_scope_id: Optional[str] = None,
        multivalued: Optional[bool] = None,
        name: Optional[str] = None,
        realm_id: Optional[str] = None,
        realm_role_prefix: Optional[str] = None) -> UserRealmRoleProtocolMapper
func GetUserRealmRoleProtocolMapper(ctx *Context, name string, id IDInput, state *UserRealmRoleProtocolMapperState, opts ...ResourceOption) (*UserRealmRoleProtocolMapper, error)
public static UserRealmRoleProtocolMapper Get(string name, Input<string> id, UserRealmRoleProtocolMapperState? state, CustomResourceOptions? opts = null)
public static UserRealmRoleProtocolMapper get(String name, Output<String> id, UserRealmRoleProtocolMapperState state, CustomResourceOptions options)
resources:  _:    type: keycloak:openid:UserRealmRoleProtocolMapper    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AddToAccessToken bool
Indicates if the property should be added as a claim to the access token. Defaults to true.
AddToIdToken bool
Indicates if the property should be added as a claim to the id token. Defaults to true.
AddToUserinfo bool
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
ClaimName string
The name of the claim to insert into a token.
ClaimValueType string
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
ClientId Changes to this property will trigger replacement. string
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
ClientScopeId Changes to this property will trigger replacement. string
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
Multivalued bool
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
Name string
The display name of this protocol mapper in the GUI.
RealmId Changes to this property will trigger replacement. string
The realm this protocol mapper exists within.
RealmRolePrefix string
A prefix for each Realm Role.
AddToAccessToken bool
Indicates if the property should be added as a claim to the access token. Defaults to true.
AddToIdToken bool
Indicates if the property should be added as a claim to the id token. Defaults to true.
AddToUserinfo bool
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
ClaimName string
The name of the claim to insert into a token.
ClaimValueType string
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
ClientId Changes to this property will trigger replacement. string
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
ClientScopeId Changes to this property will trigger replacement. string
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
Multivalued bool
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
Name string
The display name of this protocol mapper in the GUI.
RealmId Changes to this property will trigger replacement. string
The realm this protocol mapper exists within.
RealmRolePrefix string
A prefix for each Realm Role.
addToAccessToken Boolean
Indicates if the property should be added as a claim to the access token. Defaults to true.
addToIdToken Boolean
Indicates if the property should be added as a claim to the id token. Defaults to true.
addToUserinfo Boolean
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claimName String
The name of the claim to insert into a token.
claimValueType String
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
clientId Changes to this property will trigger replacement. String
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
clientScopeId Changes to this property will trigger replacement. String
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued Boolean
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name String
The display name of this protocol mapper in the GUI.
realmId Changes to this property will trigger replacement. String
The realm this protocol mapper exists within.
realmRolePrefix String
A prefix for each Realm Role.
addToAccessToken boolean
Indicates if the property should be added as a claim to the access token. Defaults to true.
addToIdToken boolean
Indicates if the property should be added as a claim to the id token. Defaults to true.
addToUserinfo boolean
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claimName string
The name of the claim to insert into a token.
claimValueType string
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
clientId Changes to this property will trigger replacement. string
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
clientScopeId Changes to this property will trigger replacement. string
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued boolean
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name string
The display name of this protocol mapper in the GUI.
realmId Changes to this property will trigger replacement. string
The realm this protocol mapper exists within.
realmRolePrefix string
A prefix for each Realm Role.
add_to_access_token bool
Indicates if the property should be added as a claim to the access token. Defaults to true.
add_to_id_token bool
Indicates if the property should be added as a claim to the id token. Defaults to true.
add_to_userinfo bool
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claim_name str
The name of the claim to insert into a token.
claim_value_type str
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
client_id Changes to this property will trigger replacement. str
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
client_scope_id Changes to this property will trigger replacement. str
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued bool
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name str
The display name of this protocol mapper in the GUI.
realm_id Changes to this property will trigger replacement. str
The realm this protocol mapper exists within.
realm_role_prefix str
A prefix for each Realm Role.
addToAccessToken Boolean
Indicates if the property should be added as a claim to the access token. Defaults to true.
addToIdToken Boolean
Indicates if the property should be added as a claim to the id token. Defaults to true.
addToUserinfo Boolean
Indicates if the property should be added as a claim to the UserInfo response body. Defaults to true.
claimName String
The name of the claim to insert into a token.
claimValueType String
The claim type used when serializing JSON tokens. Can be one of String, JSON, long, int, or boolean. Defaults to String.
clientId Changes to this property will trigger replacement. String
The client this protocol mapper should be attached to. Conflicts with client_scope_id. One of client_id or client_scope_id must be specified.
clientScopeId Changes to this property will trigger replacement. String
The client scope this protocol mapper should be attached to. Conflicts with client_id. One of client_id or client_scope_id must be specified.
multivalued Boolean
Indicates if attribute supports multiple values. If true, then the list of all values of this attribute will be set as claim. If false, then just first value will be set as claim. Defaults to false.
name String
The display name of this protocol mapper in the GUI.
realmId Changes to this property will trigger replacement. String
The realm this protocol mapper exists within.
realmRolePrefix String
A prefix for each Realm Role.

Import

Protocol mappers can be imported using one of the following formats:

  • Client: {{realm_id}}/client/{{client_keycloak_id}}/{{protocol_mapper_id}}

  • Client Scope: {{realm_id}}/client-scope/{{client_scope_keycloak_id}}/{{protocol_mapper_id}}

Example:

bash

$ pulumi import keycloak:openid/userRealmRoleProtocolMapper:UserRealmRoleProtocolMapper user_realm_role_mapper my-realm/client/a7202154-8793-4656-b655-1dd18c181e14/71602afa-f7d1-4788-8c49-ef8fd00af0f4
Copy
$ pulumi import keycloak:openid/userRealmRoleProtocolMapper:UserRealmRoleProtocolMapper user_realm_role_mapper my-realm/client-scope/b799ea7e-73ee-4a73-990a-1eafebe8e20a/71602afa-f7d1-4788-8c49-ef8fd00af0f4
Copy

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.