AuthBackendUser
Provides a resource to create a user 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 = "user_okta",
});
var foo = new Vault.Okta.AuthBackendUser("foo", new Vault.Okta.AuthBackendUserArgs
{
Groups =
{
"one",
"two",
},
Path = example.Path,
Username = "foo",
});
}
}
Coming soon!
import pulumi
import pulumi_vault as vault
example = vault.okta.AuthBackend("example",
organization="dummy",
path="user_okta")
foo = vault.okta.AuthBackendUser("foo",
groups=[
"one",
"two",
],
path=example.path,
username="foo")import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const example = new vault.okta.AuthBackend("example", {
organization: "dummy",
path: "user_okta",
});
const foo = new vault.okta.AuthBackendUser("foo", {
groups: [
"one",
"two",
],
path: example.path,
username: "foo",
});Create a AuthBackendUser Resource
new AuthBackendUser(name: string, args: AuthBackendUserArgs, opts?: CustomResourceOptions);def AuthBackendUser(resource_name, opts=None, groups=None, path=None, policies=None, username=None, __props__=None);func NewAuthBackendUser(ctx *Context, name string, args AuthBackendUserArgs, opts ...ResourceOption) (*AuthBackendUser, error)public AuthBackendUser(string name, AuthBackendUserArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args AuthBackendUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AuthBackendUserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthBackendUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
AuthBackendUser Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The AuthBackendUser resource accepts the following input properties:
- Path string
The path where the Okta auth backend is mounted
- Username string
Name of the user within Okta
- Groups List<string>
List of Okta groups to associate with this user
- Policies List<string>
List of Vault policies to associate with this user
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthBackendUser resource produces the following output properties:
Look up an Existing AuthBackendUser Resource
Get an existing AuthBackendUser 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?: AuthBackendUserState, opts?: CustomResourceOptions): AuthBackendUserstatic get(resource_name, id, opts=None, groups=None, path=None, policies=None, username=None, __props__=None);func GetAuthBackendUser(ctx *Context, name string, id IDInput, state *AuthBackendUserState, opts ...ResourceOption) (*AuthBackendUser, error)public static AuthBackendUser Get(string name, Input<string> id, AuthBackendUserState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Groups List<string>
List of Okta groups to associate with this user
- Path string
The path where the Okta auth backend is mounted
- Policies List<string>
List of Vault policies to associate with this user
- Username string
Name of the user within Okta
Package Details
- Repository
- https://github.com/pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vaultTerraform Provider.