Created
August 1, 2014 11:01
-
-
Save drybjed/0358d3027ba088dab90e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Update default postgres password | |
postgresql_user: | |
name: 'postgres' | |
password: '{{ item.postgres_password | default(postgresql_default_postgres_password) }}' | |
encrypted: False | |
port: '{{ item.port }}' | |
state: 'present' | |
with_items: postgresql_default_cluster + postgresql_clusters | |
sudo_user: 'postgres' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment