1. Packages
  2. HashiCorp Vault
  3. API Docs
  4. github
  5. User
HashiCorp Vault v6.0.0 published on Monday, Mar 25, 2024 by Pulumi

vault.github.User

Explore with Pulumi AI

vault logo
HashiCorp Vault v6.0.0 published on Monday, Mar 25, 2024 by Pulumi

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

    Example Usage

    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",
        policies: [
            "developer",
            "read-only",
        ],
    });
    
    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",
        policies=[
            "developer",
            "read-only",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/github"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := github.NewAuthBackend(ctx, "example", &github.AuthBackendArgs{
    			Organization: pulumi.String("myorg"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = github.NewUser(ctx, "tfUser", &github.UserArgs{
    			Backend: example.ID(),
    			User:    pulumi.String("john.doe"),
    			Policies: pulumi.StringArray{
    				pulumi.String("developer"),
    				pulumi.String("read-only"),
    			},
    		})
    		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 example = new Vault.GitHub.AuthBackend("example", new()
        {
            Organization = "myorg",
        });
    
        var tfUser = new Vault.GitHub.User("tfUser", new()
        {
            Backend = example.Id,
            UserName = "john.doe",
            Policies = new[]
            {
                "developer",
                "read-only",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vault.github.AuthBackend;
    import com.pulumi.vault.github.AuthBackendArgs;
    import com.pulumi.vault.github.User;
    import com.pulumi.vault.github.UserArgs;
    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 example = new AuthBackend("example", AuthBackendArgs.builder()        
                .organization("myorg")
                .build());
    
            var tfUser = new User("tfUser", UserArgs.builder()        
                .backend(example.id())
                .user("john.doe")
                .policies(            
                    "developer",
                    "read-only")
                .build());
    
        }
    }
    
    resources:
      example:
        type: vault:github:AuthBackend
        properties:
          organization: myorg
      tfUser:
        type: vault:github:User
        properties:
          backend: ${example.id}
          user: john.doe
          policies:
            - developer
            - read-only
    

    Create User Resource

    new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
    @overload
    def User(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             backend: Optional[str] = None,
             namespace: Optional[str] = None,
             policies: Optional[Sequence[str]] = None,
             user: Optional[str] = None)
    @overload
    def User(resource_name: str,
             args: UserArgs,
             opts: Optional[ResourceOptions] = None)
    func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
    public User(string name, UserArgs args, CustomResourceOptions? opts = null)
    public User(String name, UserArgs args)
    public User(String name, UserArgs args, CustomResourceOptions options)
    
    type: vault:github:User
    properties: # The arguments to resource properties.
    options: # 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.
    resource_name str
    The unique name of the resource.
    args UserArgs
    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 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.
    name String
    The unique name of the resource.
    args UserArgs
    The arguments to resource properties.
    options 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 Architecture and Concepts 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.
    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>
    An array of strings specifying the policies to be set on tokens issued using this role.
    User string
    GitHub user name.
    Backend string
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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
    An array of strings specifying the policies to be set on tokens issued using this role.
    user String
    GitHub user name.
    backend String
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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>
    An array of strings specifying the policies to be set on tokens issued using this role.
    user string
    GitHub user name.
    backend string
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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[]
    An array of strings specifying the policies to be set on tokens issued using this role.
    user str
    GitHub user name.
    backend str
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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]
    An array of strings specifying the policies to be set on tokens issued using this role.
    user String
    GitHub user name.
    backend String
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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>
    An array of strings specifying the policies to be set on tokens issued using this role.

    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 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 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
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backend: Optional[str] = None,
            namespace: Optional[str] = None,
            policies: Optional[Sequence[str]] = None,
            user: Optional[str] = None) -> User
    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)
    public static User get(String name, Output<String> id, UserState 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.
    The following state arguments are supported:
    Backend string
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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>
    An array of strings specifying the policies to be set on tokens issued using this role.
    UserName string
    GitHub user name.
    Backend string
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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
    An array of strings specifying the policies to be set on tokens issued using this role.
    User string
    GitHub user name.
    backend String
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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>
    An array of strings specifying the policies to be set on tokens issued using this role.
    user String
    GitHub user name.
    backend string
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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[]
    An array of strings specifying the policies to be set on tokens issued using this role.
    user string
    GitHub user name.
    backend str
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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]
    An array of strings specifying the policies to be set on tokens issued using this role.
    user str
    GitHub user name.
    backend String
    Path where the github auth backend is mounted. Defaults to github if not specified.
    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>
    An array of strings specifying the policies to be set on tokens issued using this role.
    user String
    GitHub user name.

    Import

    Github user mappings can be imported using the path, e.g.

    $ pulumi import vault:github/user:User tf_user auth/github/map/users/john.doe
    

    Package Details

    Repository
    Vault pulumi/pulumi-vault
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the vault Terraform Provider.
    vault logo
    HashiCorp Vault v6.0.0 published on Monday, Mar 25, 2024 by Pulumi