vault.identity.Group
Explore with Pulumi AI
Creates an Identity Group for Vault. The Identity secrets engine is the identity management solution for Vault.
A group can contain multiple entities as its members. A group can also have subgroups. Policies set on the group is granted to all members of the group. During request time, when the token’s entity ID is being evaluated for the policies that it has access to; along with the policies on the entity itself, policies that are inherited due to group memberships are also granted.
Example Usage
Internal Group
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const internal = new vault.identity.Group("internal", {
name: "internal",
type: "internal",
policies: [
"dev",
"test",
],
metadata: {
version: "2",
},
});
import pulumi
import pulumi_vault as vault
internal = vault.identity.Group("internal",
name="internal",
type="internal",
policies=[
"dev",
"test",
],
metadata={
"version": "2",
})
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := identity.NewGroup(ctx, "internal", &identity.GroupArgs{
Name: pulumi.String("internal"),
Type: pulumi.String("internal"),
Policies: pulumi.StringArray{
pulumi.String("dev"),
pulumi.String("test"),
},
Metadata: pulumi.StringMap{
"version": pulumi.String("2"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var @internal = new Vault.Identity.Group("internal", new()
{
Name = "internal",
Type = "internal",
Policies = new[]
{
"dev",
"test",
},
Metadata =
{
{ "version", "2" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.identity.Group;
import com.pulumi.vault.identity.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 internal = new Group("internal", GroupArgs.builder()
.name("internal")
.type("internal")
.policies(
"dev",
"test")
.metadata(Map.of("version", "2"))
.build());
}
}
resources:
internal:
type: vault:identity:Group
properties:
name: internal
type: internal
policies:
- dev
- test
metadata:
version: '2'
External Group
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const group = new vault.identity.Group("group", {
name: "external",
type: "external",
policies: ["test"],
metadata: {
version: "1",
},
});
import pulumi
import pulumi_vault as vault
group = vault.identity.Group("group",
name="external",
type="external",
policies=["test"],
metadata={
"version": "1",
})
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := identity.NewGroup(ctx, "group", &identity.GroupArgs{
Name: pulumi.String("external"),
Type: pulumi.String("external"),
Policies: pulumi.StringArray{
pulumi.String("test"),
},
Metadata: pulumi.StringMap{
"version": pulumi.String("1"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var @group = new Vault.Identity.Group("group", new()
{
Name = "external",
Type = "external",
Policies = new[]
{
"test",
},
Metadata =
{
{ "version", "1" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.identity.Group;
import com.pulumi.vault.identity.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 group = new Group("group", GroupArgs.builder()
.name("external")
.type("external")
.policies("test")
.metadata(Map.of("version", "1"))
.build());
}
}
resources:
group:
type: vault:identity:Group
properties:
name: external
type: external
policies:
- test
metadata:
version: '1'
Caveats
It’s important to note that Vault identity groups names are case-insensitive. For example the following resources would be equivalent.
Applying this configuration would result in the provider failing to create one of the identity groups, since the resources share the same name
.
This sort of pattern should be avoided:
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const internal = new vault.identity.Group("internal", {
name: "internal",
type: "internal",
policies: [
"dev",
"test",
],
metadata: {
version: "2",
},
});
const internalGroup = new vault.identity.Group("Internal", {
name: "Internal",
type: "internal",
policies: [
"dev",
"test",
],
metadata: {
version: "2",
},
});
import pulumi
import pulumi_vault as vault
internal = vault.identity.Group("internal",
name="internal",
type="internal",
policies=[
"dev",
"test",
],
metadata={
"version": "2",
})
internal_group = vault.identity.Group("Internal",
name="Internal",
type="internal",
policies=[
"dev",
"test",
],
metadata={
"version": "2",
})
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := identity.NewGroup(ctx, "internal", &identity.GroupArgs{
Name: pulumi.String("internal"),
Type: pulumi.String("internal"),
Policies: pulumi.StringArray{
pulumi.String("dev"),
pulumi.String("test"),
},
Metadata: pulumi.StringMap{
"version": pulumi.String("2"),
},
})
if err != nil {
return err
}
_, err = identity.NewGroup(ctx, "Internal", &identity.GroupArgs{
Name: pulumi.String("Internal"),
Type: pulumi.String("internal"),
Policies: pulumi.StringArray{
pulumi.String("dev"),
pulumi.String("test"),
},
Metadata: pulumi.StringMap{
"version": pulumi.String("2"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var @internal = new Vault.Identity.Group("internal", new()
{
Name = "internal",
Type = "internal",
Policies = new[]
{
"dev",
"test",
},
Metadata =
{
{ "version", "2" },
},
});
var internalGroup = new Vault.Identity.Group("Internal", new()
{
Name = "Internal",
Type = "internal",
Policies = new[]
{
"dev",
"test",
},
Metadata =
{
{ "version", "2" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.identity.Group;
import com.pulumi.vault.identity.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 internal = new Group("internal", GroupArgs.builder()
.name("internal")
.type("internal")
.policies(
"dev",
"test")
.metadata(Map.of("version", "2"))
.build());
var internalGroup = new Group("internalGroup", GroupArgs.builder()
.name("Internal")
.type("internal")
.policies(
"dev",
"test")
.metadata(Map.of("version", "2"))
.build());
}
}
resources:
internal:
type: vault:identity:Group
properties:
name: internal
type: internal
policies:
- dev
- test
metadata:
version: '2'
internalGroup:
type: vault:identity:Group
name: Internal
properties:
name: Internal
type: internal
policies:
- dev
- test
metadata:
version: '2'
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: Optional[GroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Group(resource_name: str,
opts: Optional[ResourceOptions] = None,
external_member_entity_ids: Optional[bool] = None,
external_member_group_ids: Optional[bool] = None,
external_policies: Optional[bool] = None,
member_entity_ids: Optional[Sequence[str]] = None,
member_group_ids: Optional[Sequence[str]] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
policies: Optional[Sequence[str]] = None,
type: Optional[str] = None)
func NewGroup(ctx *Context, name string, args *GroupArgs, opts ...ResourceOption) (*Group, error)
public Group(string name, GroupArgs? args = null, CustomResourceOptions? opts = null)
type: vault:identity: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 Vault.Identity.Group("groupResource", new()
{
ExternalMemberEntityIds = false,
ExternalMemberGroupIds = false,
ExternalPolicies = false,
MemberEntityIds = new[]
{
"string",
},
MemberGroupIds = new[]
{
"string",
},
Metadata =
{
{ "string", "string" },
},
Name = "string",
Namespace = "string",
Policies = new[]
{
"string",
},
Type = "string",
});
example, err := identity.NewGroup(ctx, "groupResource", &identity.GroupArgs{
ExternalMemberEntityIds: pulumi.Bool(false),
ExternalMemberGroupIds: pulumi.Bool(false),
ExternalPolicies: pulumi.Bool(false),
MemberEntityIds: pulumi.StringArray{
pulumi.String("string"),
},
MemberGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Namespace: pulumi.String("string"),
Policies: pulumi.StringArray{
pulumi.String("string"),
},
Type: pulumi.String("string"),
})
var groupResource = new Group("groupResource", GroupArgs.builder()
.externalMemberEntityIds(false)
.externalMemberGroupIds(false)
.externalPolicies(false)
.memberEntityIds("string")
.memberGroupIds("string")
.metadata(Map.of("string", "string"))
.name("string")
.namespace("string")
.policies("string")
.type("string")
.build());
group_resource = vault.identity.Group("groupResource",
external_member_entity_ids=False,
external_member_group_ids=False,
external_policies=False,
member_entity_ids=["string"],
member_group_ids=["string"],
metadata={
"string": "string",
},
name="string",
namespace="string",
policies=["string"],
type="string")
const groupResource = new vault.identity.Group("groupResource", {
externalMemberEntityIds: false,
externalMemberGroupIds: false,
externalPolicies: false,
memberEntityIds: ["string"],
memberGroupIds: ["string"],
metadata: {
string: "string",
},
name: "string",
namespace: "string",
policies: ["string"],
type: "string",
});
type: vault:identity:Group
properties:
externalMemberEntityIds: false
externalMemberGroupIds: false
externalPolicies: false
memberEntityIds:
- string
memberGroupIds:
- string
metadata:
string: string
name: string
namespace: string
policies:
- string
type: 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:
- External
Member boolEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- External
Member boolGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- External
Policies bool false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- Member
Entity List<string>Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - Member
Group List<string>Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - Metadata Dictionary<string, string>
- A Map of additional metadata to associate with the group.
- Name string
- Name of the identity group to create.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Policies List<string>
- A list of policies to apply to the group.
- Type string
- Type of the group, internal or external. Defaults to
internal
.
- External
Member boolEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- External
Member boolGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- External
Policies bool false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- Member
Entity []stringIds - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - Member
Group []stringIds - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - Metadata map[string]string
- A Map of additional metadata to associate with the group.
- Name string
- Name of the identity group to create.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Policies []string
- A list of policies to apply to the group.
- Type string
- Type of the group, internal or external. Defaults to
internal
.
- external
Member BooleanEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external
Member BooleanGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external
Policies Boolean false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member
Entity List<String>Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member
Group List<String>Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata Map<String,String>
- A Map of additional metadata to associate with the group.
- name String
- Name of the identity group to create.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies List<String>
- A list of policies to apply to the group.
- type String
- Type of the group, internal or external. Defaults to
internal
.
- external
Member booleanEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external
Member booleanGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external
Policies boolean false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member
Entity string[]Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member
Group string[]Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata {[key: string]: string}
- A Map of additional metadata to associate with the group.
- name string
- Name of the identity group to create.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies string[]
- A list of policies to apply to the group.
- type string
- Type of the group, internal or external. Defaults to
internal
.
- external_
member_ boolentity_ ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external_
member_ boolgroup_ ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external_
policies bool false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member_
entity_ Sequence[str]ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member_
group_ Sequence[str]ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata Mapping[str, str]
- A Map of additional metadata to associate with the group.
- name str
- Name of the identity group to create.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies Sequence[str]
- A list of policies to apply to the group.
- type str
- Type of the group, internal or external. Defaults to
internal
.
- external
Member BooleanEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external
Member BooleanGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external
Policies Boolean false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member
Entity List<String>Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member
Group List<String>Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata Map<String>
- A Map of additional metadata to associate with the group.
- name String
- Name of the identity group to create.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies List<String>
- A list of policies to apply to the group.
- type String
- Type of the group, internal or external. Defaults to
internal
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Group 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 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,
external_member_entity_ids: Optional[bool] = None,
external_member_group_ids: Optional[bool] = None,
external_policies: Optional[bool] = None,
member_entity_ids: Optional[Sequence[str]] = None,
member_group_ids: Optional[Sequence[str]] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
policies: Optional[Sequence[str]] = None,
type: 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.
- External
Member boolEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- External
Member boolGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- External
Policies bool false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- Member
Entity List<string>Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - Member
Group List<string>Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - Metadata Dictionary<string, string>
- A Map of additional metadata to associate with the group.
- Name string
- Name of the identity group to create.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Policies List<string>
- A list of policies to apply to the group.
- Type string
- Type of the group, internal or external. Defaults to
internal
.
- External
Member boolEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- External
Member boolGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- External
Policies bool false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- Member
Entity []stringIds - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - Member
Group []stringIds - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - Metadata map[string]string
- A Map of additional metadata to associate with the group.
- Name string
- Name of the identity group to create.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Policies []string
- A list of policies to apply to the group.
- Type string
- Type of the group, internal or external. Defaults to
internal
.
- external
Member BooleanEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external
Member BooleanGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external
Policies Boolean false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member
Entity List<String>Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member
Group List<String>Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata Map<String,String>
- A Map of additional metadata to associate with the group.
- name String
- Name of the identity group to create.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies List<String>
- A list of policies to apply to the group.
- type String
- Type of the group, internal or external. Defaults to
internal
.
- external
Member booleanEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external
Member booleanGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external
Policies boolean false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member
Entity string[]Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member
Group string[]Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata {[key: string]: string}
- A Map of additional metadata to associate with the group.
- name string
- Name of the identity group to create.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies string[]
- A list of policies to apply to the group.
- type string
- Type of the group, internal or external. Defaults to
internal
.
- external_
member_ boolentity_ ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external_
member_ boolgroup_ ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external_
policies bool false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member_
entity_ Sequence[str]ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member_
group_ Sequence[str]ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata Mapping[str, str]
- A Map of additional metadata to associate with the group.
- name str
- Name of the identity group to create.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies Sequence[str]
- A list of policies to apply to the group.
- type str
- Type of the group, internal or external. Defaults to
internal
.
- external
Member BooleanEntity Ids false
by default. If set totrue
, this resource will ignore any Entity IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberEntityIds
to manage Entity IDs for this group in a decoupled manner.- external
Member BooleanGroup Ids false
by default. If set totrue
, this resource will ignore any Group IDs returned from Vault or specified in the resource. You can usevault.identity.GroupMemberGroupIds
to manage Group IDs for this group in a decoupled manner.- external
Policies Boolean false
by default. If set totrue
, this resource will ignore any policies returned from Vault or specified in the resource. You can usevault.identity.GroupPolicies
to manage policies for this group in a decoupled manner.- member
Entity List<String>Ids - A list of Entity IDs to be assigned as group members. Not allowed on
external
groups. - member
Group List<String>Ids - A list of Group IDs to be assigned as group members. Not allowed on
external
groups. - metadata Map<String>
- A Map of additional metadata to associate with the group.
- name String
- Name of the identity group to create.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - policies List<String>
- A list of policies to apply to the group.
- type String
- Type of the group, internal or external. Defaults to
internal
.
Import
Identity group can be imported using the id
, e.g.
$ pulumi import vault:identity/group:Group test 'fcbf1efb-2b69-4209-bed8-811e3475dad3'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.