mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-19 17:01:25 -07:00
postgresql modules: fix examples to use FQCN (#643)
This commit is contained in:
parent
a424ee71e3
commit
f62b8027e0
22 changed files with 138 additions and 138 deletions
|
@ -95,12 +95,12 @@ extends_documentation_fragment:
|
|||
|
||||
EXAMPLES = r'''
|
||||
- name: Create a new publication with name "acme" targeting all tables in database "test".
|
||||
postgresql_publication:
|
||||
community.general.postgresql_publication:
|
||||
db: test
|
||||
name: acme
|
||||
|
||||
- name: Create publication "acme" publishing only prices and vehicles tables.
|
||||
postgresql_publication:
|
||||
community.general.postgresql_publication:
|
||||
name: acme
|
||||
tables:
|
||||
- prices
|
||||
|
@ -109,7 +109,7 @@ EXAMPLES = r'''
|
|||
- name: >
|
||||
Create publication "acme", set user alice as an owner, targeting all tables.
|
||||
Allowable DML operations are INSERT and UPDATE only
|
||||
postgresql_publication:
|
||||
community.general.postgresql_publication:
|
||||
name: acme
|
||||
owner: alice
|
||||
parameters:
|
||||
|
@ -118,7 +118,7 @@ EXAMPLES = r'''
|
|||
- name: >
|
||||
Assuming publication "acme" exists and there are targeted
|
||||
tables "prices" and "vehicles", add table "stores" to the publication.
|
||||
postgresql_publication:
|
||||
community.general.postgresql_publication:
|
||||
name: acme
|
||||
tables:
|
||||
- prices
|
||||
|
@ -126,7 +126,7 @@ EXAMPLES = r'''
|
|||
- stores
|
||||
|
||||
- name: Remove publication "acme" if exists in database "test".
|
||||
postgresql_publication:
|
||||
community.general.postgresql_publication:
|
||||
db: test
|
||||
name: acme
|
||||
state: absent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue