keycloak.Group
Explore with Pulumi AI
# keycloak.Group
Allows for creating and managing Groups within Keycloak.
Groups provide a logical wrapping for users within Keycloak. Users within a group can share attributes and roles, and group membership can be mapped to a claim.
Attributes can also be defined on Groups.
Groups can also be federated from external data sources, such as LDAP or Active Directory. This resource should not be used to manage groups that were created this way.
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 parentGroup = new keycloak.Group("parent_group", {
realmId: realm.id,
name: "parent-group",
});
const childGroup = new keycloak.Group("child_group", {
realmId: realm.id,
parentId: parentGroup.id,
name: "child-group",
});
const childGroupWithOptionalAttributes = new keycloak.Group("child_group_with_optional_attributes", {
realmId: realm.id,
parentId: parentGroup.id,
name: "child-group-with-optional-attributes",
attributes: {
key1: "value1",
key2: "value2",
},
});
import pulumi
import pulumi_keycloak as keycloak
realm = keycloak.Realm("realm",
realm="my-realm",
enabled=True)
parent_group = keycloak.Group("parent_group",
realm_id=realm.id,
name="parent-group")
child_group = keycloak.Group("child_group",
realm_id=realm.id,
parent_id=parent_group.id,
name="child-group")
child_group_with_optional_attributes = keycloak.Group("child_group_with_optional_attributes",
realm_id=realm.id,
parent_id=parent_group.id,
name="child-group-with-optional-attributes",
attributes={
"key1": "value1",
"key2": "value2",
})
package main
import (
"github.com/pulumi/pulumi-keycloak/sdk/v5/go/keycloak"
"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
}
parentGroup, err := keycloak.NewGroup(ctx, "parent_group", &keycloak.GroupArgs{
RealmId: realm.ID(),
Name: pulumi.String("parent-group"),
})
if err != nil {
return err
}
_, err = keycloak.NewGroup(ctx, "child_group", &keycloak.GroupArgs{
RealmId: realm.ID(),
ParentId: parentGroup.ID(),
Name: pulumi.String("child-group"),
})
if err != nil {
return err
}
_, err = keycloak.NewGroup(ctx, "child_group_with_optional_attributes", &keycloak.GroupArgs{
RealmId: realm.ID(),
ParentId: parentGroup.ID(),
Name: pulumi.String("child-group-with-optional-attributes"),
Attributes: pulumi.Map{
"key1": pulumi.Any("value1"),
"key2": pulumi.Any("value2"),
},
})
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 parentGroup = new Keycloak.Group("parent_group", new()
{
RealmId = realm.Id,
Name = "parent-group",
});
var childGroup = new Keycloak.Group("child_group", new()
{
RealmId = realm.Id,
ParentId = parentGroup.Id,
Name = "child-group",
});
var childGroupWithOptionalAttributes = new Keycloak.Group("child_group_with_optional_attributes", new()
{
RealmId = realm.Id,
ParentId = parentGroup.Id,
Name = "child-group-with-optional-attributes",
Attributes =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
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.Group;
import com.pulumi.keycloak.GroupArgs;
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 parentGroup = new Group("parentGroup", GroupArgs.builder()
.realmId(realm.id())
.name("parent-group")
.build());
var childGroup = new Group("childGroup", GroupArgs.builder()
.realmId(realm.id())
.parentId(parentGroup.id())
.name("child-group")
.build());
var childGroupWithOptionalAttributes = new Group("childGroupWithOptionalAttributes", GroupArgs.builder()
.realmId(realm.id())
.parentId(parentGroup.id())
.name("child-group-with-optional-attributes")
.attributes(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}
resources:
realm:
type: keycloak:Realm
properties:
realm: my-realm
enabled: true
parentGroup:
type: keycloak:Group
name: parent_group
properties:
realmId: ${realm.id}
name: parent-group
childGroup:
type: keycloak:Group
name: child_group
properties:
realmId: ${realm.id}
parentId: ${parentGroup.id}
name: child-group
childGroupWithOptionalAttributes:
type: keycloak:Group
name: child_group_with_optional_attributes
properties:
realmId: ${realm.id}
parentId: ${parentGroup.id}
name: child-group-with-optional-attributes
attributes:
key1: value1
key2: value2
Argument Reference
The following arguments are supported:
realm_id
- (Required) The realm this group exists in.parent_id
- (Optional) The ID of this group’s parent. If omitted, this group will be defined at the root level.name
- (Required) The name of the group.attributes
- (Optional) A dict of key/value pairs to set as custom attributes for the group.
Attributes Reference
In addition to the arguments listed above, the following computed attributes are exported:
path
- The complete path of the group. For example, the child group’s path in the example configuration would be/parent-group/child-group
.
Import
Groups can be imported using the format {{realm_id}}/{{group_id}}
, where group_id
is the unique ID that Keycloak
assigns to the group upon creation. This value can be found in the URI when editing this group in the GUI, and is typically a GUID.
Example:
$ terraform import keycloak_group.child_group my-realm/934a4a4e-28bd-4703-a0fa-332df153aabd
Create Group Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Group(name: string, args: GroupArgs, opts?: CustomResourceOptions);
@overload
def Group(resource_name: str,
args: GroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Group(resource_name: str,
opts: Optional[ResourceOptions] = None,
realm_id: Optional[str] = None,
attributes: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None,
parent_id: Optional[str] = None)
func NewGroup(ctx *Context, name string, args GroupArgs, opts ...ResourceOption) (*Group, error)
public Group(string name, GroupArgs args, CustomResourceOptions? opts = null)
type: keycloak:Group
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 GroupArgs
- 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 GroupArgs
- 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 GroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GroupArgs
- 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 groupResource = new Keycloak.Group("groupResource", new()
{
RealmId = "string",
Attributes =
{
{ "string", "any" },
},
Name = "string",
ParentId = "string",
});
example, err := keycloak.NewGroup(ctx, "groupResource", &keycloak.GroupArgs{
RealmId: pulumi.String("string"),
Attributes: pulumi.Map{
"string": pulumi.Any("any"),
},
Name: pulumi.String("string"),
ParentId: pulumi.String("string"),
})
var groupResource = new Group("groupResource", GroupArgs.builder()
.realmId("string")
.attributes(Map.of("string", "any"))
.name("string")
.parentId("string")
.build());
group_resource = keycloak.Group("groupResource",
realm_id="string",
attributes={
"string": "any",
},
name="string",
parent_id="string")
const groupResource = new keycloak.Group("groupResource", {
realmId: "string",
attributes: {
string: "any",
},
name: "string",
parentId: "string",
});
type: keycloak:Group
properties:
attributes:
string: any
name: string
parentId: string
realmId: string
Group Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Group resource accepts the following input properties:
- Realm
Id string - Attributes Dictionary<string, object>
- Name string
- Parent
Id string
- Realm
Id string - Attributes map[string]interface{}
- Name string
- Parent
Id string
- realm
Id String - attributes Map<String,Object>
- name String
- parent
Id String
- realm
Id string - attributes {[key: string]: any}
- name string
- parent
Id string
- realm_
id str - attributes Mapping[str, Any]
- name str
- parent_
id str
- realm
Id String - attributes Map<Any>
- name String
- parent
Id String
Outputs
All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:
Look up Existing Group Resource
Get an existing Group 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?: GroupState, opts?: CustomResourceOptions): Group
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attributes: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None,
parent_id: Optional[str] = None,
path: Optional[str] = None,
realm_id: Optional[str] = None) -> Group
func GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)
public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)
public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Attributes Dictionary<string, object>
- Name string
- Parent
Id string - Path string
- Realm
Id string
- Attributes map[string]interface{}
- Name string
- Parent
Id string - Path string
- Realm
Id string
- attributes Map<String,Object>
- name String
- parent
Id String - path String
- realm
Id String
- attributes {[key: string]: any}
- name string
- parent
Id string - path string
- realm
Id string
- attributes Mapping[str, Any]
- name str
- parent_
id str - path str
- realm_
id str
- attributes Map<Any>
- name String
- parent
Id String - path String
- realm
Id String
Package Details
- Repository
- Keycloak pulumi/pulumi-keycloak
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
keycloak
Terraform Provider.