Class SecretBackendCaArgs
Inherited Members
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.Ssh
Assembly: Pulumi.Vault.dll
Syntax
public sealed class SecretBackendCaArgs : ResourceArgs
Constructors
View SourceSecretBackendCaArgs()
Declaration
public SecretBackendCaArgs()
Properties
View SourceBackend
The path where the SSH secret backend is mounted. Defaults to 'ssh'
Declaration
public Input<string> Backend { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
GenerateSigningKey
Whether Vault should generate the signing key pair internally. Defaults to true
Declaration
public Input<bool> GenerateSigningKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
PrivateKey
The private key part the SSH CA key pair; required if generate_signing_key is false.
Declaration
public Input<string> PrivateKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PublicKey
The public key part the SSH CA key pair; required if generate_signing_key is false.
Declaration
public Input<string> PublicKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |