postgresql modules: fix examples to use FQCN (#643)

This commit is contained in:
Andrew Klychkov
2020-07-13 12:54:34 +03:00
committed by GitHub
parent a424ee71e3
commit f62b8027e0
22 changed files with 138 additions and 138 deletions

View File

@@ -68,16 +68,16 @@ extends_documentation_fragment:
EXAMPLES = r'''
- name: Collect information about all supported user objects of the acme database
postgresql_user_obj_stat_info:
community.general.postgresql_user_obj_stat_info:
db: acme
- name: Collect information about all supported user objects in the custom schema of the acme database
postgresql_user_obj_stat_info:
community.general.postgresql_user_obj_stat_info:
db: acme
schema: custom
- name: Collect information about user tables and indexes in the acme database
postgresql_user_obj_stat_info:
community.general.postgresql_user_obj_stat_info:
db: acme
filter: tables, indexes
'''