mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Neaten up example YAML with 2-space indenting
This commit is contained in:
parent
7c38e8a225
commit
843f4e7d7c
1 changed files with 11 additions and 11 deletions
|
@ -338,18 +338,18 @@ local_action:
|
|||
connection: local
|
||||
vars:
|
||||
instance_ids:
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
region: us-east-1
|
||||
tasks:
|
||||
- name: Start the sandbox instances
|
||||
local_action:
|
||||
module: ec2
|
||||
instance_ids: '{{ instance_ids }}'
|
||||
region: '{{ region }}'
|
||||
state: running
|
||||
wait: True
|
||||
module: ec2
|
||||
instance_ids: '{{ instance_ids }}'
|
||||
region: '{{ region }}'
|
||||
state: running
|
||||
wait: True
|
||||
role:
|
||||
- do_neat_stuff
|
||||
- do_more_neat_stuff
|
||||
|
@ -360,9 +360,9 @@ local_action:
|
|||
connection: local
|
||||
vars:
|
||||
instance_ids:
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
- 'i-xxxxxx'
|
||||
region: us-east-1
|
||||
tasks:
|
||||
- name: Stop the sanbox instances
|
||||
|
|
Loading…
Reference in a new issue