1. Packages
  2. HashiCorp Vault
  3. API Docs
  4. okta
  5. AuthBackendUser
HashiCorp Vault v6.1.0 published on Thursday, Apr 4, 2024 by Pulumi

vault.okta.AuthBackendUser

Explore with Pulumi AI

vault logo
HashiCorp Vault v6.1.0 published on Thursday, Apr 4, 2024 by Pulumi

    Provides a resource to create a user in an Okta auth backend within Vault.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as vault from "@pulumi/vault";
    
    const example = new vault.okta.AuthBackend("example", {
        path: "user_okta",
        organization: "dummy",
    });
    const foo = new vault.okta.AuthBackendUser("foo", {
        path: example.path,
        username: "foo",
        groups: [
            "one",
            "two",
        ],
    });
    
    import pulumi
    import pulumi_vault as vault
    
    example = vault.okta.AuthBackend("example",
        path="user_okta",
        organization="dummy")
    foo = vault.okta.AuthBackendUser("foo",
        path=example.path,
        username="foo",
        groups=[
            "one",
            "two",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/okta"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := okta.NewAuthBackend(ctx, "example", &okta.AuthBackendArgs{
    			Path:         pulumi.String("user_okta"),
    			Organization: pulumi.String("dummy"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = okta.NewAuthBackendUser(ctx, "foo", &okta.AuthBackendUserArgs{
    			Path:     example.Path,
    			Username: pulumi.String("foo"),
    			Groups: pulumi.StringArray{
    				pulumi.String("one"),
    				pulumi.String("two"),
    			},
    		})
    		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.Okta.AuthBackend("example", new()
        {
            Path = "user_okta",
            Organization = "dummy",
        });
    
        var foo = new Vault.Okta.AuthBackendUser("foo", new()
        {
            Path = example.Path,
            Username = "foo",
            Groups = new[]
            {
                "one",
                "two",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vault.okta.AuthBackend;
    import com.pulumi.vault.okta.AuthBackendArgs;
    import com.pulumi.vault.okta.AuthBackendUser;
    import com.pulumi.vault.okta.AuthBackendUserArgs;
    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()        
                .path("user_okta")
                .organization("dummy")
                .build());
    
            var foo = new AuthBackendUser("foo", AuthBackendUserArgs.builder()        
                .path(example.path())
                .username("foo")
                .groups(            
                    "one",
                    "two")
                .build());
    
        }
    }
    
    resources:
      example:
        type: vault:okta:AuthBackend
        properties:
          path: user_okta
          organization: dummy
      foo:
        type: vault:okta:AuthBackendUser
        properties:
          path: ${example.path}
          username: foo
          groups:
            - one
            - two
    

    Create AuthBackendUser Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AuthBackendUser(name: string, args: AuthBackendUserArgs, opts?: CustomResourceOptions);
    @overload
    def AuthBackendUser(resource_name: str,
                        args: AuthBackendUserInitArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthBackendUser(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        path: Optional[str] = None,
                        username: Optional[str] = None,
                        groups: Optional[Sequence[str]] = None,
                        namespace: Optional[str] = None,
                        policies: Optional[Sequence[str]] = None)
    func NewAuthBackendUser(ctx *Context, name string, args AuthBackendUserArgs, opts ...ResourceOption) (*AuthBackendUser, error)
    public AuthBackendUser(string name, AuthBackendUserArgs args, CustomResourceOptions? opts = null)
    public AuthBackendUser(String name, AuthBackendUserArgs args)
    public AuthBackendUser(String name, AuthBackendUserArgs args, CustomResourceOptions options)
    
    type: vault:okta:AuthBackendUser
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    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.
    args AuthBackendUserInitArgs
    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 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.
    name String
    The unique name of the resource.
    args AuthBackendUserArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var vaultAuthBackendUserResource = new Vault.Okta.AuthBackendUser("vaultAuthBackendUserResource", new()
    {
        Path = "string",
        Username = "string",
        Groups = new[]
        {
            "string",
        },
        Namespace = "string",
        Policies = new[]
        {
            "string",
        },
    });
    
    example, err := okta.NewAuthBackendUser(ctx, "vaultAuthBackendUserResource", &okta.AuthBackendUserArgs{
    	Path:     pulumi.String("string"),
    	Username: pulumi.String("string"),
    	Groups: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Namespace: pulumi.String("string"),
    	Policies: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var vaultAuthBackendUserResource = new AuthBackendUser("vaultAuthBackendUserResource", AuthBackendUserArgs.builder()        
        .path("string")
        .username("string")
        .groups("string")
        .namespace("string")
        .policies("string")
        .build());
    
    vault_auth_backend_user_resource = vault.okta.AuthBackendUser("vaultAuthBackendUserResource",
        path="string",
        username="string",
        groups=["string"],
        namespace="string",
        policies=["string"])
    
    const vaultAuthBackendUserResource = new vault.okta.AuthBackendUser("vaultAuthBackendUserResource", {
        path: "string",
        username: "string",
        groups: ["string"],
        namespace: "string",
        policies: ["string"],
    });
    
    type: vault:okta:AuthBackendUser
    properties:
        groups:
            - string
        namespace: string
        path: string
        policies:
            - string
        username: string
    

    AuthBackendUser 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 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
    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>
    List of Vault policies to associate with this user
    Path string
    The path where the Okta auth backend is mounted
    Username string
    Name of the user within Okta
    Groups []string
    List of Okta groups to associate with this user
    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
    List of Vault policies to associate with this user
    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
    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>
    List of Vault policies to associate with this user
    path string
    The path where the Okta auth backend is mounted
    username string
    Name of the user within Okta
    groups string[]
    List of Okta groups to associate with this user
    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[]
    List of Vault policies to associate with this user
    path str
    The path where the Okta auth backend is mounted
    username str
    Name of the user within Okta
    groups Sequence[str]
    List of Okta groups to associate with this user
    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]
    List of Vault policies to associate with this user
    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
    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>
    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:

    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 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): AuthBackendUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            groups: Optional[Sequence[str]] = None,
            namespace: Optional[str] = None,
            path: Optional[str] = None,
            policies: Optional[Sequence[str]] = None,
            username: Optional[str] = None) -> AuthBackendUser
    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)
    public static AuthBackendUser get(String name, Output<String> id, AuthBackendUserState 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:
    Groups List<string>
    List of Okta groups to associate with this user
    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.
    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
    Groups []string
    List of Okta groups to associate with this user
    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.
    Path string
    The path where the Okta auth backend is mounted
    Policies []string
    List of Vault policies to associate with this user
    Username string
    Name of the user within Okta
    groups List<String>
    List of Okta groups to associate with this user
    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.
    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
    groups string[]
    List of Okta groups to associate with this user
    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.
    path string
    The path where the Okta auth backend is mounted
    policies string[]
    List of Vault policies to associate with this user
    username string
    Name of the user within Okta
    groups Sequence[str]
    List of Okta groups to associate with this user
    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.
    path str
    The path where the Okta auth backend is mounted
    policies Sequence[str]
    List of Vault policies to associate with this user
    username str
    Name of the user within Okta
    groups List<String>
    List of Okta groups to associate with this user
    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.
    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

    Import

    Okta authentication backend users can be imported using its path/user ID format, e.g.

    $ pulumi import vault:okta/authBackendUser:AuthBackendUser example okta/foo
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.1.0 published on Thursday, Apr 4, 2024 by Pulumi