You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- ---
- # Defines tasks applicable for postgreSQL
-
- - name: Install Postgres
- apt: pkg={{ item }} state=installed
- with_items:
- - postgresql
- - python-psycopg2
- tags:
- - dependencies
-
- - name: Set password for PostgreSQL admin user
- become: true
- become_user: postgres
- postgresql_user: name={{ db_admin_username }} password={{ db_admin_password }} encrypted=yes
|