Skip to content

Commit c9f651b

Browse files
Copilotaviadhahami
andcommitted
Update example placeholders to be more explicit
Co-authored-by: aviadhahami <7353632+aviadhahami@users.noreply.github.com>
1 parent ebd21d7 commit c9f651b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

example/pass_request_options.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ process.env.DEBUG = 'node-vault'; // switch on debug mode
77
const vault = require('./../src/index')({
88
requestOptions: {
99
agentOptions: {
10-
cert: 'mycert',
11-
key: 'mykey',
12-
passphrase: 'password',
10+
cert: '<path-to-cert>',
11+
key: '<path-to-key>',
12+
passphrase: '<your-passphrase>',
1313
securityOptions: 'SSL_OP_NO_SSLv3',
1414
},
1515
},
@@ -21,9 +21,9 @@ const perCallOptions = {
2121
'X-HELLO': 'world',
2222
},
2323
agentOptions: {
24-
cert: 'mycert',
25-
key: 'mykey',
26-
passphrase: 'password',
24+
cert: '<path-to-cert>',
25+
key: '<path-to-key>',
26+
passphrase: '<your-passphrase>',
2727
securityOptions: 'SSL_OP_NO_SSLv3',
2828
},
2929
};

0 commit comments

Comments
 (0)