diff --git a/lib/ansible/modules/database/postgresql/postgresql_user.py b/lib/ansible/modules/database/postgresql/postgresql_user.py index 3cf74d6ed95..f79b70d2a97 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_user.py +++ b/lib/ansible/modules/database/postgresql/postgresql_user.py @@ -160,6 +160,7 @@ EXAMPLES = ''' name: django password: ceec4eif7ya priv: "CONNECT/products:ALL" + expires: "Jan 31 2020" # Create rails user, set its password (MD5-hashed) and grant privilege to create other # databases and demote rails from super user status @@ -189,7 +190,7 @@ EXAMPLES = ''' name: django password: mysupersecretword priv: "CONNECT/products:ALL" - expire: infinity + expires: infinity # Example privileges string format # INSERT,UPDATE/table:SELECT/anothertable:ALL