summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortedder <ted.timmons@stansonhealth.com>2015-03-17 16:32:01 -0700
committertedder <ted.timmons@stansonhealth.com>2015-03-30 13:35:54 -0700
commit472331a53b168a6c7e59680529fc56fb77bdbec8 (patch)
tree565f8a8400dd6305b2a3cffbb6806f168e3a25e9
parent3738339b90b3e8d0b285feefe73948e485649b26 (diff)
downloadansible-modules-core-472331a53b168a6c7e59680529fc56fb77bdbec8.tar.gz
skip password changes so pg_authid isn't needed
Some places ([AWS RDS](https://forums.aws.amazon.com/thread.jspa?threadID=151248)) don't have, or don't allow, access to the `pg_authid` table. The only reason that is necessary is to check for a password change. This flag is a workaround so passwords can only be set at creation time. It isn't as elegant as changing the password down the line, but it fixes the longstanding issue #297 that prevented this from being useful on AWS RDS.
-rw-r--r--database/postgresql/postgresql_user.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/database/postgresql/postgresql_user.py b/database/postgresql/postgresql_user.py
index 020b3740..d0d7c2cb 100644
--- a/database/postgresql/postgresql_user.py
+++ b/database/postgresql/postgresql_user.py
@@ -113,6 +113,12 @@ options:
required: false
default: null
version_added: '1.4'
+ no_password_changes:
+ description:
+ - if C(yes), don't inspect database for password changes. Effective when C(pg_authid) is not accessible (such as AWS RDS). Otherwise, make password changes as necessary.
+ required: false
+ default: 'yes'
+ choices: [ "yes", "no" ]
notes:
- The default authentication assumes that you are either logging in as or
sudo'ing to the postgres account on the host.
@@ -201,7 +207,7 @@ def user_add(cursor, user, password, role_attr_flags, encrypted, expires):
cursor.execute(query, query_password_data)
return True
-def user_alter(cursor, module, user, password, role_attr_flags, encrypted, expires):
+def user_alter(cursor, module, user, password, role_attr_flags, encrypted, expires, no_password_changes):
"""Change user password and/or attributes. Return True if changed, False otherwise."""
changed = False
@@ -215,7 +221,7 @@ def user_alter(cursor, module, user, password, role_attr_flags, encrypted, expir
return False
# Handle passwords.
- if password is not None or role_attr_flags is not None:
+ if not no_password_changes and (password is not None or role_attr_flags is not None):
# Select password and all flag-like columns in order to verify changes.
query_password_data = dict(password=password, expires=expires)
select = "SELECT * FROM pg_authid where rolname=%(user)s"
@@ -471,6 +477,7 @@ def main():
fail_on_user=dict(type='bool', default='yes'),
role_attr_flags=dict(default=''),
encrypted=dict(type='bool', default='no'),
+ no_password_changes=dict(type='bool', default='no'),
expires=dict(default=None)
),
supports_check_mode = True
@@ -485,6 +492,7 @@ def main():
module.fail_json(msg="privileges require a database to be specified")
privs = parse_privs(module.params["priv"], db)
port = module.params["port"]
+ no_password_changes = module.params.get("no_password_changes", False)
try:
role_attr_flags = parse_role_attrs(module.params["role_attr_flags"])
except InvalidFlagsError, e:
@@ -529,7 +537,7 @@ def main():
if state == "present":
if user_exists(cursor, user):
try:
- changed = user_alter(cursor, module, user, password, role_attr_flags, encrypted, expires)
+ changed = user_alter(cursor, module, user, password, role_attr_flags, encrypted, expires, no_password_changes)
except SQLParseError, e:
module.fail_json(msg=str(e))
else: