├── README.md ├── defaults ├── aws.yml └── postgresql.yml ├── hosts.ini ├── main.yml ├── tasks ├── master.yml ├── postgresql.yml ├── provision.yml └── standby.yml └── templates ├── pg_hba.conf.j2 ├── pgpass.j2 └── recovery.conf.j2 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/README.md -------------------------------------------------------------------------------- /defaults/aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/defaults/aws.yml -------------------------------------------------------------------------------- /defaults/postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/defaults/postgresql.yml -------------------------------------------------------------------------------- /hosts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/hosts.ini -------------------------------------------------------------------------------- /main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/main.yml -------------------------------------------------------------------------------- /tasks/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/tasks/master.yml -------------------------------------------------------------------------------- /tasks/postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/tasks/postgresql.yml -------------------------------------------------------------------------------- /tasks/provision.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/tasks/provision.yml -------------------------------------------------------------------------------- /tasks/standby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/tasks/standby.yml -------------------------------------------------------------------------------- /templates/pg_hba.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/templates/pg_hba.conf.j2 -------------------------------------------------------------------------------- /templates/pgpass.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/templates/pgpass.j2 -------------------------------------------------------------------------------- /templates/recovery.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulcin/pgconfeu2015/HEAD/templates/recovery.conf.j2 --------------------------------------------------------------------------------