-
-
Save stavxyz/9210659 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "trigger": ..., | |
"credentials": { | |
"host": [ | |
{ | |
//Used for any host (pooled) | |
"username": "root", | |
"private-key": "----BEGIN ... KEY----", | |
}, | |
{ | |
//Used for any host (pooled) | |
"password": "MyFoo", // username=root implied for linux, administrator for windows) | |
}, | |
{ | |
//Used for all hosts listed in hosts (defaults won't apply) | |
"username": "root", | |
"private-key": "----BEGIN ... KEY----", | |
"hosts": [ | |
"web01.rax.io", | |
"10.2.3.4" | |
] | |
} | |
], | |
} | |
// Shortcuts (do not use credentials array and these shortcuts simultaneously!) | |
"host-private-key": "", //Assumes root, used as default. Shortcut | |
"host-username": "" //Assumes root, used as default. Shortcut | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment