User

Manages policy mappings for Github Users authenticated via Github. See the Vault documentation for more information.

Example Usage

using Pulumi;
using Vault = Pulumi.Vault;

class MyStack : Stack
{
    public MyStack()
    {
        var example = new Vault.GitHub.AuthBackend("example", new Vault.GitHub.AuthBackendArgs
        {
            Organization = "myorg",
        });
        var tfUser = new Vault.GitHub.User("tfUser", new Vault.GitHub.UserArgs
        {
            Backend = example.Id,
            User = "john.doe",
            TokenPolicies = 
            {
                "developer",
                "read-only",
            },
        });
    }

}

Coming soon!

import pulumi
import pulumi_vault as vault

example = vault.github.AuthBackend("example", organization="myorg")
tf_user = vault.github.User("tfUser",
    backend=example.id,
    user="john.doe",
    token_policies=[
        "developer",
        "read-only",
    ])
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";

const example = new vault.github.AuthBackend("example", {organization: "myorg"});
const tfUser = new vault.github.User("tfUser", {
    backend: example.id,
    user: "john.doe",
    tokenPolicies: [
        "developer",
        "read-only",
    ],
});

Create a User Resource

new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
def User(resource_name, opts=None, backend=None, policies=None, token_bound_cidrs=None, token_explicit_max_ttl=None, token_max_ttl=None, token_no_default_policy=None, token_num_uses=None, token_period=None, token_policies=None, token_ttl=None, token_type=None, user=None, __props__=None);
func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
public User(string name, UserArgs args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args UserArgs
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 UserArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args UserArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

User Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The User resource accepts the following input properties:

UserName string

GitHub user name.

Backend string

Path where the github auth backend is mounted. Defaults to github if not specified.

Policies List<string>

An array of strings specifying the policies to be set on tokens issued using this role.

TokenBoundCidrs List<string>

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenExplicitMaxTtl int

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenMaxTtl int

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNoDefaultPolicy bool

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNumUses int

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPeriod int

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPolicies List<string>

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenTtl int

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenType string

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

User string

GitHub user name.

Backend string

Path where the github auth backend is mounted. Defaults to github if not specified.

Policies []string

An array of strings specifying the policies to be set on tokens issued using this role.

TokenBoundCidrs []string

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenExplicitMaxTtl int

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenMaxTtl int

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNoDefaultPolicy bool

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNumUses int

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPeriod int

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPolicies []string

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenTtl int

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenType string

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

user string

GitHub user name.

backend string

Path where the github auth backend is mounted. Defaults to github if not specified.

policies string[]

An array of strings specifying the policies to be set on tokens issued using this role.

tokenBoundCidrs string[]

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenExplicitMaxTtl number

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenMaxTtl number

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenNoDefaultPolicy boolean

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenNumUses number

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenPeriod number

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenPolicies string[]

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenTtl number

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenType string

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

user str

GitHub user name.

backend str

Path where the github auth backend is mounted. Defaults to github if not specified.

policies List[str]

An array of strings specifying the policies to be set on tokens issued using this role.

token_bound_cidrs List[str]

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_explicit_max_ttl float

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_max_ttl float

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_no_default_policy bool

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_num_uses float

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_period float

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_policies List[str]

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_ttl float

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_type str

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

Outputs

All input properties are implicitly available as output properties. Additionally, the User 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing User Resource

Get an existing User 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?: UserState, opts?: CustomResourceOptions): User
static get(resource_name, id, opts=None, backend=None, policies=None, token_bound_cidrs=None, token_explicit_max_ttl=None, token_max_ttl=None, token_no_default_policy=None, token_num_uses=None, token_period=None, token_policies=None, token_ttl=None, token_type=None, user=None, __props__=None);
func GetUser(ctx *Context, name string, id IDInput, state *UserState, opts ...ResourceOption) (*User, error)
public static User Get(string name, Input<string> id, UserState? 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:

Backend string

Path where the github auth backend is mounted. Defaults to github if not specified.

Policies List<string>

An array of strings specifying the policies to be set on tokens issued using this role.

TokenBoundCidrs List<string>

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenExplicitMaxTtl int

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenMaxTtl int

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNoDefaultPolicy bool

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNumUses int

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPeriod int

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPolicies List<string>

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenTtl int

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenType string

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

UserName string

GitHub user name.

Backend string

Path where the github auth backend is mounted. Defaults to github if not specified.

Policies []string

An array of strings specifying the policies to be set on tokens issued using this role.

TokenBoundCidrs []string

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenExplicitMaxTtl int

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenMaxTtl int

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNoDefaultPolicy bool

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenNumUses int

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPeriod int

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenPolicies []string

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenTtl int

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

TokenType string

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

User string

GitHub user name.

backend string

Path where the github auth backend is mounted. Defaults to github if not specified.

policies string[]

An array of strings specifying the policies to be set on tokens issued using this role.

tokenBoundCidrs string[]

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenExplicitMaxTtl number

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenMaxTtl number

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenNoDefaultPolicy boolean

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenNumUses number

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenPeriod number

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenPolicies string[]

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenTtl number

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

tokenType string

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

user string

GitHub user name.

backend str

Path where the github auth backend is mounted. Defaults to github if not specified.

policies List[str]

An array of strings specifying the policies to be set on tokens issued using this role.

token_bound_cidrs List[str]

Specifies the blocks of IP addresses which are allowed to use the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_explicit_max_ttl float

Generated Token’s Explicit Maximum TTL in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_max_ttl float

The maximum lifetime of the generated token

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_no_default_policy bool

If true, the ‘default’ policy will not automatically be added to generated tokens

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_num_uses float

The maximum number of times a token may be used, a value of zero means unlimited

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_period float

Generated Token’s Period

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_policies List[str]

Generated Token’s Policies

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_ttl float

The initial ttl of the token to generate in seconds

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

token_type str

The type of token to generate, service or batch

Deprecated: This parameter should be moved to the Github Auth backend config block. It does nothing in a user/team block.

user str

GitHub user name.

Package Details

Repository
https://github.com/pulumi/pulumi-vault
License
Apache-2.0
Notes
This Pulumi package is based on the vault Terraform Provider.