Backport 59342, postgresql_schema: parameter ensure replaced by state (#59368)

* parameter ensure replaced by state (#59342)

corrected a typo at the absent-example.
(cherry picked from commit 883cc665e3)

* Backport 59342, postgresql_schema: parameter ensure replaced by state
This commit is contained in:
Andrey Klychkov 2019-07-23 03:05:23 +03:00 committed by Toshio Kuratomi
parent 6e9c928817
commit e989f4c38d
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- postgresql_schema - Parameter ensure replaced by state in the drop schema example (https://github.com/ansible/ansible/pull/59342)

View file

@ -102,7 +102,7 @@ EXAMPLES = r'''
- name: Drop schema "acme" with cascade
postgresql_schema:
name: acme
ensure: absent
state: absent
cascade_drop: yes
'''