HashiCorp Vault v6.7.1 published on Friday, May 2, 2025 by Pulumi
vault.getAuthBackend
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const example = vault.getAuthBackend({
    path: "userpass",
});
import pulumi
import pulumi_vault as vault
example = vault.get_auth_backend(path="userpass")
package main
import (
	"github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vault.LookupAuthBackend(ctx, &vault.LookupAuthBackendArgs{
			Path: "userpass",
		}, nil)
		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 = Vault.GetAuthBackend.Invoke(new()
    {
        Path = "userpass",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.VaultFunctions;
import com.pulumi.vault.inputs.GetAuthBackendArgs;
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) {
        final var example = VaultFunctions.getAuthBackend(GetAuthBackendArgs.builder()
            .path("userpass")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: vault:getAuthBackend
      arguments:
        path: userpass
Using getAuthBackend
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAuthBackend(args: GetAuthBackendArgs, opts?: InvokeOptions): Promise<GetAuthBackendResult>
function getAuthBackendOutput(args: GetAuthBackendOutputArgs, opts?: InvokeOptions): Output<GetAuthBackendResult>def get_auth_backend(namespace: Optional[str] = None,
                     path: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetAuthBackendResult
def get_auth_backend_output(namespace: Optional[pulumi.Input[str]] = None,
                     path: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetAuthBackendResult]func LookupAuthBackend(ctx *Context, args *LookupAuthBackendArgs, opts ...InvokeOption) (*LookupAuthBackendResult, error)
func LookupAuthBackendOutput(ctx *Context, args *LookupAuthBackendOutputArgs, opts ...InvokeOption) LookupAuthBackendResultOutput> Note: This function is named LookupAuthBackend in the Go SDK.
public static class GetAuthBackend 
{
    public static Task<GetAuthBackendResult> InvokeAsync(GetAuthBackendArgs args, InvokeOptions? opts = null)
    public static Output<GetAuthBackendResult> Invoke(GetAuthBackendInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAuthBackendResult> getAuthBackend(GetAuthBackendArgs args, InvokeOptions options)
public static Output<GetAuthBackendResult> getAuthBackend(GetAuthBackendArgs args, InvokeOptions options)
fn::invoke:
  function: vault:index/getAuthBackend:getAuthBackend
  arguments:
    # arguments dictionaryThe following arguments are supported:
getAuthBackend Result
The following output properties are available:
- Accessor string
- The accessor for this auth method.
- DefaultLease intTtl Seconds 
- The default lease duration in seconds.
- Description string
- A description of the auth method.
- Id string
- The provider-assigned unique ID for this managed resource.
- ListingVisibility string
- Specifies whether to show this mount in the UI-specific listing endpoint.
- Local bool
- Specifies if the auth method is local only.
- MaxLease intTtl Seconds 
- The maximum lease duration in seconds.
- Path string
- Type string
- The name of the auth method type.
- Namespace string
- Accessor string
- The accessor for this auth method.
- DefaultLease intTtl Seconds 
- The default lease duration in seconds.
- Description string
- A description of the auth method.
- Id string
- The provider-assigned unique ID for this managed resource.
- ListingVisibility string
- Specifies whether to show this mount in the UI-specific listing endpoint.
- Local bool
- Specifies if the auth method is local only.
- MaxLease intTtl Seconds 
- The maximum lease duration in seconds.
- Path string
- Type string
- The name of the auth method type.
- Namespace string
- accessor String
- The accessor for this auth method.
- defaultLease IntegerTtl Seconds 
- The default lease duration in seconds.
- description String
- A description of the auth method.
- id String
- The provider-assigned unique ID for this managed resource.
- listingVisibility String
- Specifies whether to show this mount in the UI-specific listing endpoint.
- local Boolean
- Specifies if the auth method is local only.
- maxLease IntegerTtl Seconds 
- The maximum lease duration in seconds.
- path String
- type String
- The name of the auth method type.
- namespace String
- accessor string
- The accessor for this auth method.
- defaultLease numberTtl Seconds 
- The default lease duration in seconds.
- description string
- A description of the auth method.
- id string
- The provider-assigned unique ID for this managed resource.
- listingVisibility string
- Specifies whether to show this mount in the UI-specific listing endpoint.
- local boolean
- Specifies if the auth method is local only.
- maxLease numberTtl Seconds 
- The maximum lease duration in seconds.
- path string
- type string
- The name of the auth method type.
- namespace string
- accessor str
- The accessor for this auth method.
- default_lease_ intttl_ seconds 
- The default lease duration in seconds.
- description str
- A description of the auth method.
- id str
- The provider-assigned unique ID for this managed resource.
- listing_visibility str
- Specifies whether to show this mount in the UI-specific listing endpoint.
- local bool
- Specifies if the auth method is local only.
- max_lease_ intttl_ seconds 
- The maximum lease duration in seconds.
- path str
- type str
- The name of the auth method type.
- namespace str
- accessor String
- The accessor for this auth method.
- defaultLease NumberTtl Seconds 
- The default lease duration in seconds.
- description String
- A description of the auth method.
- id String
- The provider-assigned unique ID for this managed resource.
- listingVisibility String
- Specifies whether to show this mount in the UI-specific listing endpoint.
- local Boolean
- Specifies if the auth method is local only.
- maxLease NumberTtl Seconds 
- The maximum lease duration in seconds.
- path String
- type String
- The name of the auth method type.
- namespace String
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the vaultTerraform Provider.