Files
JFrog-Cloud-Installers/Ansible/ansible_collections/jfrog/platform/roles/postgres/README.md
Ram Mohan Rao Chukka ab2644dd80 [ansible] JFrog Platform 7.18.5 release (#106)
* [ansible] JFrog Platform 7.18.5 release
2021-05-03 21:11:56 +05:30

730 B

postgres

The postgres role will install Postgresql software and configure a database and user to support an Artifactory or Xray server.

Role Variables

By default, the pg_hba.conf client authentication file is configured for open access for development purposes through the postgres_allowed_hosts variable:

postgres_allowed_hosts:
  - { type: "host", database: "all", user: "all", address: "0.0.0.0/0", method: "trust"}

THIS SHOULD NOT BE USED FOR PRODUCTION.

Update this variable to only allow access from Artifactory, Distibution, MissionControl and Xray.

Example Playbook

---
- hosts: postgres_servers
  roles:
    - postgres