@pulumi/tls 5.1.0 → 5.1.1
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/getPublicKey.d.ts +4 -4
- package/getPublicKey.js +4 -4
- package/package.json +2 -2
package/getPublicKey.d.ts
CHANGED
|
@@ -13,11 +13,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
13
|
*
|
|
14
14
|
* const ed25519_example = new tls.PrivateKey("ed25519-example", {algorithm: "ED25519"});
|
|
15
15
|
* // Public key loaded from a terraform-generated private key, using the PEM (RFC 1421) format
|
|
16
|
-
* const
|
|
16
|
+
* const privateKeyPem_example = tls.getPublicKeyOutput({
|
|
17
17
|
* privateKeyPem: ed25519_example.privateKeyPem,
|
|
18
18
|
* });
|
|
19
19
|
* // Public key loaded from filesystem, using the Open SSH (RFC 4716) format
|
|
20
|
-
* const
|
|
20
|
+
* const privateKeyOpenssh_example = std.file({
|
|
21
21
|
* input: "~/.ssh/id_rsa_rfc4716",
|
|
22
22
|
* }).then(invoke => tls.getPublicKey({
|
|
23
23
|
* privateKeyOpenssh: invoke.result,
|
|
@@ -89,11 +89,11 @@ export interface GetPublicKeyResult {
|
|
|
89
89
|
*
|
|
90
90
|
* const ed25519_example = new tls.PrivateKey("ed25519-example", {algorithm: "ED25519"});
|
|
91
91
|
* // Public key loaded from a terraform-generated private key, using the PEM (RFC 1421) format
|
|
92
|
-
* const
|
|
92
|
+
* const privateKeyPem_example = tls.getPublicKeyOutput({
|
|
93
93
|
* privateKeyPem: ed25519_example.privateKeyPem,
|
|
94
94
|
* });
|
|
95
95
|
* // Public key loaded from filesystem, using the Open SSH (RFC 4716) format
|
|
96
|
-
* const
|
|
96
|
+
* const privateKeyOpenssh_example = std.file({
|
|
97
97
|
* input: "~/.ssh/id_rsa_rfc4716",
|
|
98
98
|
* }).then(invoke => tls.getPublicKey({
|
|
99
99
|
* privateKeyOpenssh: invoke.result,
|
package/getPublicKey.js
CHANGED
|
@@ -19,11 +19,11 @@ const utilities = require("./utilities");
|
|
|
19
19
|
*
|
|
20
20
|
* const ed25519_example = new tls.PrivateKey("ed25519-example", {algorithm: "ED25519"});
|
|
21
21
|
* // Public key loaded from a terraform-generated private key, using the PEM (RFC 1421) format
|
|
22
|
-
* const
|
|
22
|
+
* const privateKeyPem_example = tls.getPublicKeyOutput({
|
|
23
23
|
* privateKeyPem: ed25519_example.privateKeyPem,
|
|
24
24
|
* });
|
|
25
25
|
* // Public key loaded from filesystem, using the Open SSH (RFC 4716) format
|
|
26
|
-
* const
|
|
26
|
+
* const privateKeyOpenssh_example = std.file({
|
|
27
27
|
* input: "~/.ssh/id_rsa_rfc4716",
|
|
28
28
|
* }).then(invoke => tls.getPublicKey({
|
|
29
29
|
* privateKeyOpenssh: invoke.result,
|
|
@@ -53,11 +53,11 @@ exports.getPublicKey = getPublicKey;
|
|
|
53
53
|
*
|
|
54
54
|
* const ed25519_example = new tls.PrivateKey("ed25519-example", {algorithm: "ED25519"});
|
|
55
55
|
* // Public key loaded from a terraform-generated private key, using the PEM (RFC 1421) format
|
|
56
|
-
* const
|
|
56
|
+
* const privateKeyPem_example = tls.getPublicKeyOutput({
|
|
57
57
|
* privateKeyPem: ed25519_example.privateKeyPem,
|
|
58
58
|
* });
|
|
59
59
|
* // Public key loaded from filesystem, using the Open SSH (RFC 4716) format
|
|
60
|
-
* const
|
|
60
|
+
* const privateKeyOpenssh_example = std.file({
|
|
61
61
|
* input: "~/.ssh/id_rsa_rfc4716",
|
|
62
62
|
* }).then(invoke => tls.getPublicKey({
|
|
63
63
|
* privateKeyOpenssh: invoke.result,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/tls",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
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.1.
|
|
25
|
+
"version": "5.1.1"
|
|
26
26
|
}
|
|
27
27
|
}
|