Show / Hide Table of Contents

Class GetAccessCredentialsArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetAccessCredentialsArgs
Inherited Members
InvokeArgs.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.Azure
Assembly: Pulumi.Vault.dll
Syntax
public sealed class GetAccessCredentialsArgs : InvokeArgs

Constructors

View Source

GetAccessCredentialsArgs()

Declaration
public GetAccessCredentialsArgs()

Properties

View Source

Backend

The path to the Azure secret backend to read credentials from, with no leading or trailing /s.

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

MaxCredValidationSeconds

If 'validate_creds' is true, the number of seconds after which to give up validating credentials. Defaults to 1,200 (20 minutes).

Declaration
public int? MaxCredValidationSeconds { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

NumSecondsBetweenTests

If 'validate_creds' is true, the number of seconds to wait between each test of generated credentials. Defaults to 7.

Declaration
public int? NumSecondsBetweenTests { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

NumSequentialSuccesses

If 'validate_creds' is true, the number of sequential successes required to validate generated credentials. Defaults to 8.

Declaration
public int? NumSequentialSuccesses { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

Role

The name of the Azure secret backend role to read credentials from, with no leading or trailing /s.

Declaration
public string Role { get; set; }
Property Value
Type Description
System.String
View Source

ValidateCreds

Whether generated credentials should be validated before being returned. Defaults to false, which returns credentials without checking whether they have fully propagated throughout Azure Active Directory. Designating true activates testing.

Declaration
public bool? ValidateCreds { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.