Class SecretBackendArgs
Inherited Members
Namespace: Pulumi.Vault.Aws
Assembly: Pulumi.Vault.dll
Syntax
public sealed class SecretBackendArgs : ResourceArgs
Constructors
View SourceSecretBackendArgs()
Declaration
public SecretBackendArgs()
Properties
View SourceAccessKey
The AWS Access Key ID this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
Declaration
public Input<string> AccessKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
DefaultLeaseTtlSeconds
The default TTL for credentials issued by this backend.
Declaration
public Input<int> DefaultLeaseTtlSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Description
A human-friendly description for this backend.
Declaration
public Input<string> Description { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
MaxLeaseTtlSeconds
The maximum TTL that can be requested for credentials issued by this backend.
Declaration
public Input<int> MaxLeaseTtlSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Path
The unique path this backend should be mounted at. Must
not begin or end with a /. Defaults to aws.
Declaration
public Input<string> Path { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Region
The AWS region for API calls. Defaults to us-east-1.
Declaration
public Input<string> Region { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SecretKey
The AWS Secret Key this backend should use to issue new credentials. Vault uses the official AWS SDK to authenticate, and thus can also use standard AWS environment credentials, shared file credentials or IAM role/ECS task credentials.
Declaration
public Input<string> SecretKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |