Skip to content

Instantly share code, notes, and snippets.

@stavxyz
Forked from ziadsawalha/satori-creds.json
Last active August 29, 2015 13:56
Show Gist options
  • Save stavxyz/9210659 to your computer and use it in GitHub Desktop.
Save stavxyz/9210659 to your computer and use it in GitHub Desktop.
{ "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