Fix examples formatting (#345)

This commit is contained in:
Andrew Klychkov 2020-05-16 16:07:51 +03:00 committed by GitHub
commit a7c830f49d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
148 changed files with 330 additions and 334 deletions

View file

@ -49,7 +49,7 @@ extends_documentation_fragment:
EXAMPLES = r'''
# Example influxdb_retention_policy command from Ansible Playbooks
- name: create 1 hour retention policy
- name: Create 1 hour retention policy
influxdb_retention_policy:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
@ -59,7 +59,7 @@ EXAMPLES = r'''
ssl: yes
validate_certs: yes
- name: create 1 day retention policy
- name: Create 1 day retention policy
influxdb_retention_policy:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
@ -67,7 +67,7 @@ EXAMPLES = r'''
duration: 1d
replication: 1
- name: create 1 week retention policy
- name: Create 1 week retention policy
influxdb_retention_policy:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"
@ -75,7 +75,7 @@ EXAMPLES = r'''
duration: 1w
replication: 1
- name: create infinite retention policy
- name: Create infinite retention policy
influxdb_retention_policy:
hostname: "{{influxdb_ip_address}}"
database_name: "{{influxdb_database_name}}"