8 lines
238 B
YAML
8 lines
238 B
YAML
---
|
|
- name: This is a hello-world example
|
|
hosts: "{{ inputHosts }}"
|
|
tasks:
|
|
- name: Create a file called '/tmp/testfile.txt' with the content 'hello world'.
|
|
copy:
|
|
content: hello world
|
|
dest: /tmp/testfile.txt |