Class GetAccessCredentialsArgs
Inherited Members
Namespace: Pulumi.Vault.Azure
Assembly: Pulumi.Vault.dll
Syntax
public sealed class GetAccessCredentialsArgs : InvokeArgs
Constructors
View SourceGetAccessCredentialsArgs()
Declaration
public GetAccessCredentialsArgs()
Properties
View SourceBackend
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 |
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> |
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> |
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> |
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 |
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> |