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

@ -43,7 +43,7 @@ notes:
EXAMPLES = '''
- name: create a certificate
- name: Create a certificate
digital_ocean_certificate:
name: production
state: present
@ -51,7 +51,7 @@ EXAMPLES = '''
leaf_certificate: "-----BEGIN CERTIFICATE-----\nMIIFDmg2Iaw==\n-----END CERTIFICATE-----"
oauth_token: b7d03a6947b217efb6f3ec3bd365652
- name: create a certificate using file lookup plugin
- name: Create a certificate using file lookup plugin
digital_ocean_certificate:
name: production
state: present
@ -59,7 +59,7 @@ EXAMPLES = '''
leaf_certificate: "{{ lookup('file', 'test.cert') }}"
oauth_token: "{{ oauth_token }}"
- name: create a certificate with trust chain
- name: Create a certificate with trust chain
digital_ocean_certificate:
name: production
state: present
@ -68,7 +68,7 @@ EXAMPLES = '''
certificate_chain: "{{ lookup('file', 'chain.cert') }}"
oauth_token: "{{ oauth_token }}"
- name: remove a certificate
- name: Remove a certificate
digital_ocean_certificate:
name: production
state: absent