n8n-nodes-customssh
Version:
n8n community node for advanced SSH connections with configurable ciphers and network device support
26 lines (24 loc) • 519 B
text/typescript
// SshPasswordCredential.credentials.ts
import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class SshPasswordCredential implements ICredentialType {
name = 'sshPassword';
displayName = 'SSH Password';
documentationUrl = '';
properties: INodeProperties[] = [
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
}