Show / Hide Table of Contents

Class AuthBackendLoginState

Inheritance
System.Object
InputArgs
ResourceArgs
AuthBackendLoginState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Vault.AppRole
Assembly: Pulumi.Vault.dll
Syntax
public sealed class AuthBackendLoginState : ResourceArgs

Constructors

View Source

AuthBackendLoginState()

Declaration
public AuthBackendLoginState()

Properties

View Source

Accessor

The accessor for the token.

Declaration
public Input<string> Accessor { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Backend

The unique path of the Vault backend to log in with.

Declaration
public Input<string> Backend { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ClientToken

The Vault token created.

Declaration
public Input<string> ClientToken { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LeaseDuration

How long the token is valid for, in seconds.

Declaration
public Input<int> LeaseDuration { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

LeaseStarted

The date and time the lease started, in RFC 3339 format.

Declaration
public Input<string> LeaseStarted { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Metadata

The metadata associated with the token.

Declaration
public InputMap<string> Metadata { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Policies

A list of policies applied to the token.

Declaration
public InputList<string> Policies { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Renewable

Whether the token is renewable or not.

Declaration
public Input<bool> Renewable { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

RoleId

The ID of the role to log in with.

Declaration
public Input<string> RoleId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SecretId

The secret ID of the role to log in with. Required unless bind_secret_id is set to false on the role.

Declaration
public Input<string> SecretId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.