Skip to content

Commit

Permalink
fix(core): Fix SSH Tunnels when using private key (#10148)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored and cstuncsik committed Jul 31, 2024
1 parent ebc45a1 commit 36685f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nodes-base/utils/sshTunnel.properties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const sshTunnelProperties: INodeProperties[] = [
},
{
displayName: 'Private Key',
name: 'sshPrivateKey',
name: 'privateKey', // TODO: Rename to sshPrivateKey
type: 'string',
typeOptions: {
rows: 4,
Expand All @@ -94,7 +94,7 @@ export const sshTunnelProperties: INodeProperties[] = [
},
{
displayName: 'Passphrase',
name: 'sshPassphrase',
name: 'passphrase', // TODO: Rename to sshPassphrase
type: 'string',
default: '',
description: 'Passphrase used to create the key, if no passphrase was used leave empty',
Expand Down

0 comments on commit 36685f7

Please sign in to comment.