mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
Fix examples formatting (#345)
This commit is contained in:
parent
31ba39cac4
commit
a7c830f49d
148 changed files with 330 additions and 334 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue