Class AuthBackendGroup
Provides a resource to create a group in an Okta auth backend within Vault.
Example Usage
using Pulumi;
using Vault = Pulumi.Vault;
class MyStack : Stack
{
public MyStack()
{
var example = new Vault.Okta.AuthBackend("example", new Vault.Okta.AuthBackendArgs
{
Organization = "dummy",
Path = "group_okta",
});
var foo = new Vault.Okta.AuthBackendGroup("foo", new Vault.Okta.AuthBackendGroupArgs
{
GroupName = "foo",
Path = example.Path,
Policies =
{
"one",
"two",
},
});
}
}
Inherited Members
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.Okta
Assembly: Pulumi.Vault.dll
Syntax
public class AuthBackendGroup : CustomResource
Constructors
View SourceAuthBackendGroup(String, AuthBackendGroupArgs, CustomResourceOptions)
Create a AuthBackendGroup resource with the given unique name, arguments, and options.
Declaration
public AuthBackendGroup(string name, AuthBackendGroupArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| AuthBackendGroupArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceGroupName
Name of the group within the Okta
Declaration
public Output<string> GroupName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Path
The path where the Okta auth backend is mounted
Declaration
public Output<string> Path { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Policies
Vault policies to associate with this group
Declaration
public Output<ImmutableArray<string>> Policies { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
Methods
View SourceGet(String, Input<String>, AuthBackendGroupState, CustomResourceOptions)
Get an existing AuthBackendGroup resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static AuthBackendGroup Get(string name, Input<string> id, AuthBackendGroupState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| AuthBackendGroupState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| AuthBackendGroup |