15 lines
266 B
YAML
15 lines
266 B
YAML
|
# This is purely here to check if things are
|
||
|
# working properly
|
||
|
---
|
||
|
- hosts: alpha, beta, gamma, sigma
|
||
|
remote_user: ubuntu
|
||
|
tasks:
|
||
|
- name: Echo
|
||
|
shell: echo 'asdfasdfasdf'
|
||
|
|
||
|
- name: Sample web request
|
||
|
get_url:
|
||
|
url: https://google.com
|
||
|
|
||
|
|