Skip to content

Instantly share code, notes, and snippets.

@poliphox
Created April 26, 2014 00:49
Show Gist options
  • Save poliphox/11308490 to your computer and use it in GitHub Desktop.
Save poliphox/11308490 to your computer and use it in GitHub Desktop.
{
"name": "database",
"description": "Install & configure postgres",
"default_attributes": {
"postgresql": {
"initdb_options": "--locale=en_US.UTF-8",
"version": "9.3",
"listen_addresses": "*",
"pg_hba": [
{
"type": "host",
"db": "all",
"user": "all",
"addr": "0.0.0.0/0",
"method": "md5"
}
]
}
},
"override_attributes": {
},
"run_list": [
"recipe[server_configs::postgres]"
],
"env_run_lists": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment