Skip to content

Commit

Permalink
fix(core): Fix SSH Tunnels when using private key (n8n-io#10148)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Jul 23, 2024
1 parent b07c5e2 commit a96db34
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 a96db34

Please sign in to comment.