mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
fix(core): Fix SSH Tunnels when using private key (#10148)
This commit is contained in:
parent
b07c5e2011
commit
a96db344e5
|
@ -78,7 +78,7 @@ export const sshTunnelProperties: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Private Key',
|
displayName: 'Private Key',
|
||||||
name: 'sshPrivateKey',
|
name: 'privateKey', // TODO: Rename to sshPrivateKey
|
||||||
type: 'string',
|
type: 'string',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
rows: 4,
|
rows: 4,
|
||||||
|
@ -94,7 +94,7 @@ export const sshTunnelProperties: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Passphrase',
|
displayName: 'Passphrase',
|
||||||
name: 'sshPassphrase',
|
name: 'passphrase', // TODO: Rename to sshPassphrase
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Passphrase used to create the key, if no passphrase was used leave empty',
|
description: 'Passphrase used to create the key, if no passphrase was used leave empty',
|
||||||
|
|
Loading…
Reference in a new issue