Skip to content

Instantly share code, notes, and snippets.

@michiels
Last active January 4, 2016 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michiels/8556691 to your computer and use it in GitHub Desktop.
Save michiels/8556691 to your computer and use it in GitHub Desktop.
{
"run_list":["role[mysql]","role[rails]"],
"mysql": {
"server_debian_password": "our_secret_debian_password",
"server_root_password": "our_secret_root_password",
"server_repl_password": "our_secret_repl_password",
},
"authorization": {
"sudo": {
"users": ["intercity"],
}
},
"ssh_deploy_keys": [
"Michiel's SSH key",
"Bob's SSH key",
"Emile's SSH key"
],
"active_applications": {
"intercity_production": {
"packages": ["nodejs"],
"domain_names": ["intercityapp.com", "www.intercityapp.com"],
"ruby_version": "2.1.0",
"database_info": {
"adapter": "mysql2",
"host": "localhost",
"username": "intercity",
"password": "our_secret_db_password",
"database": "intercity_production"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment