mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -50,7 +50,7 @@ extends_documentation_fragment:
|
|||
EXAMPLES = r'''
|
||||
# Example influxdb_retention_policy command from Ansible Playbooks
|
||||
- name: Create 1 hour retention policy
|
||||
influxdb_retention_policy:
|
||||
community.general.influxdb_retention_policy:
|
||||
hostname: "{{influxdb_ip_address}}"
|
||||
database_name: "{{influxdb_database_name}}"
|
||||
policy_name: test
|
||||
|
@ -60,7 +60,7 @@ EXAMPLES = r'''
|
|||
validate_certs: yes
|
||||
|
||||
- name: Create 1 day retention policy
|
||||
influxdb_retention_policy:
|
||||
community.general.influxdb_retention_policy:
|
||||
hostname: "{{influxdb_ip_address}}"
|
||||
database_name: "{{influxdb_database_name}}"
|
||||
policy_name: test
|
||||
|
@ -68,7 +68,7 @@ EXAMPLES = r'''
|
|||
replication: 1
|
||||
|
||||
- name: Create 1 week retention policy
|
||||
influxdb_retention_policy:
|
||||
community.general.influxdb_retention_policy:
|
||||
hostname: "{{influxdb_ip_address}}"
|
||||
database_name: "{{influxdb_database_name}}"
|
||||
policy_name: test
|
||||
|
@ -76,7 +76,7 @@ EXAMPLES = r'''
|
|||
replication: 1
|
||||
|
||||
- name: Create infinite retention policy
|
||||
influxdb_retention_policy:
|
||||
community.general.influxdb_retention_policy:
|
||||
hostname: "{{influxdb_ip_address}}"
|
||||
database_name: "{{influxdb_database_name}}"
|
||||
policy_name: test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue