bipbip.js icon indicating copy to clipboard operation
bipbip.js copied to clipboard

Add support for custom ssh key

Open Hakihiro opened this issue 7 years ago • 0 comments

Actually we can add it to the user parameter.

Eg :

servers: [{
            user: "-i {{pathToPem}} user",
            host: "myhost",
            to: "/toto"
        }]

But it can be more userfriendly if we can do:

servers: [{
            user: "user",
            key: "{{pathToPem}}"
            host: "myhost",
            to: "/toto"
        }]

Hakihiro avatar Jul 23 '18 15:07 Hakihiro