@pulumi/tls 5.0.4 → 5.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/certRequest.d.ts CHANGED
@@ -37,7 +37,7 @@ export declare class CertRequest extends pulumi.CustomResource {
37
37
  */
38
38
  static isInstance(obj: any): obj is CertRequest;
39
39
  /**
40
- * The certificate request data in PEM (RFC 1421).
40
+ * The certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
41
41
  */
42
42
  readonly certRequestPem: pulumi.Output<string>;
43
43
  /**
@@ -53,7 +53,7 @@ export declare class CertRequest extends pulumi.CustomResource {
53
53
  */
54
54
  readonly keyAlgorithm: pulumi.Output<string>;
55
55
  /**
56
- * Private key in PEM (RFC 1421) interpolation function.
56
+ * Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the `file` interpolation function.
57
57
  */
58
58
  readonly privateKeyPem: pulumi.Output<string>;
59
59
  /**
@@ -78,7 +78,7 @@ export declare class CertRequest extends pulumi.CustomResource {
78
78
  */
79
79
  export interface CertRequestState {
80
80
  /**
81
- * The certificate request data in PEM (RFC 1421).
81
+ * The certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
82
82
  */
83
83
  certRequestPem?: pulumi.Input<string>;
84
84
  /**
@@ -94,7 +94,7 @@ export interface CertRequestState {
94
94
  */
95
95
  keyAlgorithm?: pulumi.Input<string>;
96
96
  /**
97
- * Private key in PEM (RFC 1421) interpolation function.
97
+ * Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the `file` interpolation function.
98
98
  */
99
99
  privateKeyPem?: pulumi.Input<string>;
100
100
  /**
@@ -119,7 +119,7 @@ export interface CertRequestArgs {
119
119
  */
120
120
  ipAddresses?: pulumi.Input<pulumi.Input<string>[]>;
121
121
  /**
122
- * Private key in PEM (RFC 1421) interpolation function.
122
+ * Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the `file` interpolation function.
123
123
  */
124
124
  privateKeyPem: pulumi.Input<string>;
125
125
  /**
package/getPublicKey.d.ts CHANGED
@@ -67,11 +67,11 @@ export interface GetPublicKeyResult {
67
67
  */
68
68
  readonly publicKeyFingerprintSha256: string;
69
69
  /**
70
- * The public key, in OpenSSH PEM (RFC 4716).
70
+ * The public key, in [OpenSSH PEM (RFC 4716)](https://datatracker.ietf.org/doc/html/rfc4716) format. This is also known as ['Authorized Keys'](https://www.ssh.com/academy/ssh/authorized_keys/openssh#format-of-the-authorized-keys-file) format. This is not populated for `ECDSA` with curve `P224`, as it is not supported. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
71
71
  */
72
72
  readonly publicKeyOpenssh: string;
73
73
  /**
74
- * The public key, in PEM (RFC 1421).
74
+ * The public key, in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
75
75
  */
76
76
  readonly publicKeyPem: string;
77
77
  }
@@ -32,7 +32,7 @@ export declare class LocallySignedCert extends pulumi.CustomResource {
32
32
  */
33
33
  readonly caPrivateKeyPem: pulumi.Output<string>;
34
34
  /**
35
- * Certificate data in PEM (RFC 1421).
35
+ * Certificate data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
36
36
  */
37
37
  readonly certPem: pulumi.Output<string>;
38
38
  /**
@@ -94,7 +94,7 @@ export interface LocallySignedCertState {
94
94
  */
95
95
  caPrivateKeyPem?: pulumi.Input<string>;
96
96
  /**
97
- * Certificate data in PEM (RFC 1421).
97
+ * Certificate data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
98
98
  */
99
99
  certPem?: pulumi.Input<string>;
100
100
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/tls",
3
- "version": "5.0.4",
3
+ "version": "5.0.5",
4
4
  "description": "A Pulumi package to create TLS resources in Pulumi programs.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "tls",
25
- "version": "5.0.4"
25
+ "version": "5.0.5"
26
26
  }
27
27
  }
package/privateKey.d.ts CHANGED
@@ -44,11 +44,11 @@ export declare class PrivateKey extends pulumi.CustomResource {
44
44
  */
45
45
  readonly publicKeyFingerprintSha256: pulumi.Output<string>;
46
46
  /**
47
- * The public key data in "Authorized Keys".
47
+ * The public key data in ["Authorized Keys"](https://www.ssh.com/academy/ssh/authorized_keys/openssh#format-of-the-authorized-keys-file) format. This is not populated for `ECDSA` with curve `P224`, as it is not supported. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
48
48
  */
49
49
  readonly publicKeyOpenssh: pulumi.Output<string>;
50
50
  /**
51
- * Public key data in PEM (RFC 1421).
51
+ * Public key data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
52
52
  */
53
53
  readonly publicKeyPem: pulumi.Output<string>;
54
54
  /**
@@ -97,11 +97,11 @@ export interface PrivateKeyState {
97
97
  */
98
98
  publicKeyFingerprintSha256?: pulumi.Input<string>;
99
99
  /**
100
- * The public key data in "Authorized Keys".
100
+ * The public key data in ["Authorized Keys"](https://www.ssh.com/academy/ssh/authorized_keys/openssh#format-of-the-authorized-keys-file) format. This is not populated for `ECDSA` with curve `P224`, as it is not supported. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
101
101
  */
102
102
  publicKeyOpenssh?: pulumi.Input<string>;
103
103
  /**
104
- * Public key data in PEM (RFC 1421).
104
+ * Public key data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
105
105
  */
106
106
  publicKeyPem?: pulumi.Input<string>;
107
107
  /**
@@ -22,7 +22,7 @@ export declare class SelfSignedCert extends pulumi.CustomResource {
22
22
  */
23
23
  readonly allowedUses: pulumi.Output<string[]>;
24
24
  /**
25
- * Certificate data in PEM (RFC 1421).
25
+ * Certificate data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
26
26
  */
27
27
  readonly certPem: pulumi.Output<string>;
28
28
  /**
@@ -43,7 +43,7 @@ export declare class SelfSignedCert extends pulumi.CustomResource {
43
43
  */
44
44
  readonly keyAlgorithm: pulumi.Output<string>;
45
45
  /**
46
- * Private key in PEM (RFC 1421) interpolation function.
46
+ * Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the `file` interpolation function.
47
47
  */
48
48
  readonly privateKeyPem: pulumi.Output<string>;
49
49
  /**
@@ -96,7 +96,7 @@ export interface SelfSignedCertState {
96
96
  */
97
97
  allowedUses?: pulumi.Input<pulumi.Input<string>[]>;
98
98
  /**
99
- * Certificate data in PEM (RFC 1421).
99
+ * Certificate data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
100
100
  */
101
101
  certPem?: pulumi.Input<string>;
102
102
  /**
@@ -117,7 +117,7 @@ export interface SelfSignedCertState {
117
117
  */
118
118
  keyAlgorithm?: pulumi.Input<string>;
119
119
  /**
120
- * Private key in PEM (RFC 1421) interpolation function.
120
+ * Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the `file` interpolation function.
121
121
  */
122
122
  privateKeyPem?: pulumi.Input<string>;
123
123
  /**
@@ -175,7 +175,7 @@ export interface SelfSignedCertArgs {
175
175
  */
176
176
  isCaCertificate?: pulumi.Input<boolean>;
177
177
  /**
178
- * Private key in PEM (RFC 1421) interpolation function.
178
+ * Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the `file` interpolation function.
179
179
  */
180
180
  privateKeyPem: pulumi.Input<string>;
181
181
  /**
package/types/output.d.ts CHANGED
@@ -38,7 +38,7 @@ export interface CertRequestSubject {
38
38
  }
39
39
  export interface GetCertificateCertificate {
40
40
  /**
41
- * Certificate data in PEM (RFC 1421).
41
+ * Certificate data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. **NOTE**: the [underlying](https://pkg.go.dev/encoding/pem#Encode) [libraries](https://pkg.go.dev/golang.org/x/crypto/ssh#MarshalAuthorizedKey) that generate this value append a `\n` at the end of the PEM. In case this disrupts your use case, we recommend using `trimspace()`.
42
42
  */
43
43
  certPem: string;
44
44
  /**