Show / Hide Table of Contents

Class GroupArgs

Inheritance
System.Object
InputArgs
ResourceArgs
GroupArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Vault.Identity
Assembly: Pulumi.Vault.dll
Syntax
public sealed class GroupArgs : ResourceArgs

Constructors

View Source

GroupArgs()

Declaration
public GroupArgs()

Properties

View Source

ExternalPolicies

false by default. If set to true, this resource will ignore any policies return from Vault or specified in the resource. You can use vault.identity.GroupPolicies to manage policies for this group in a decoupled manner.

Declaration
public Input<bool> ExternalPolicies { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

MemberEntityIds

A list of Entity IDs to be assigned as group members. Not allowed on external groups.

Declaration
public InputList<string> MemberEntityIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

MemberGroupIds

A list of Group IDs to be assigned as group members. Not allowed on external groups.

Declaration
public InputList<string> MemberGroupIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Metadata

A Map of additional metadata to associate with the group.

Declaration
public InputMap<string> Metadata { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Name

Name of the identity group to create.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Policies

A list of policies to apply to the group.

Declaration
public InputList<string> Policies { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Type

Type of the group, internal or external. Defaults to internal.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.