Class KeyPairState
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.Aws.LightSail
Assembly: Pulumi.Aws.dll
Syntax
public sealed class KeyPairState : ResourceArgs
Constructors
View SourceKeyPairState()
Declaration
public KeyPairState()
Properties
View SourceArn
The ARN of the Lightsail key pair
Declaration
public Input<string> Arn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
EncryptedFingerprint
The MD5 public key fingerprint for the encrypted private key
Declaration
public Input<string> EncryptedFingerprint { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
EncryptedPrivateKey
the private key material, base 64 encoded and
encrypted with the given pgp_key. This is only populated when creating a new
key and pgp_key is supplied
Declaration
public Input<string> EncryptedPrivateKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Fingerprint
The MD5 public key fingerprint as specified in section 4 of RFC 4716.
Declaration
public Input<string> Fingerprint { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name of the Lightsail Key Pair. If omitted, a unique name will be generated by this provider
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
NamePrefix
Declaration
public Input<string> NamePrefix { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PgpKey
An optional PGP key to encrypt the resulting private key material. Only used when creating a new key pair
Declaration
public Input<string> PgpKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PrivateKey
the private key, base64 encoded. This is only populated
when creating a new key, and when no pgp_key is provided
Declaration
public Input<string> PrivateKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PublicKey
The public key material. This public key will be imported into Lightsail
Declaration
public Input<string> PublicKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |