From 1fc6f011f94baf40fad35ee938e454469b8f6a20 Mon Sep 17 00:00:00 2001 From: Neil Chudleigh Date: Thu, 14 Mar 2019 15:56:05 -0400 Subject: [PATCH 1/2] Update readme example with encrypted password and encrypted: yes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b15974a8..4d06a1b4 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,8 @@ postgresql_database_extensions: # List of users to be created (optional) postgresql_users: - name: baz - pass: pass - encrypted: no # denotes if the password is already encrypted. + pass: md51a1dc91c907325c69271ddf0c944bc72 # md5 encrypted 'pass', postgresql >= 10 does not accept unencrypted passwords + encrypted: yes # denotes if the password is already encrypted # List of schemas to be created (optional) postgresql_database_schemas: From d6e8ee36a2a75904cf21d716ce360bf4c57e710f Mon Sep 17 00:00:00 2001 From: Neil Chudleigh Date: Fri, 15 Mar 2019 14:02:44 -0400 Subject: [PATCH 2/2] Change password and comment https://docs.ansible.com/ansible/latest/modules/postgresql_user_module.html --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d06a1b4..86a898f2 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,8 @@ postgresql_database_extensions: # List of users to be created (optional) postgresql_users: - name: baz - pass: md51a1dc91c907325c69271ddf0c944bc72 # md5 encrypted 'pass', postgresql >= 10 does not accept unencrypted passwords - encrypted: yes # denotes if the password is already encrypted + pass: pass + encrypted: yes # if password should be encrypted, postgresql >= 10 does only accepts encrypted passwords # List of schemas to be created (optional) postgresql_database_schemas: