diff options
| author | Matthew Jones <mat@matburt.net> | 2016-04-13 15:50:39 -0400 |
|---|---|---|
| committer | Matthew Jones <mat@matburt.net> | 2016-04-13 15:50:39 -0400 |
| commit | 347e44fea036c94d5f60e544de006453ee5c71ad (patch) | |
| tree | 39b93f0f42361c78d887edf7a0e45a9ce6c1df59 | |
| parent | Initial commit (diff) | |
| download | ansible-tower-samples-347e44fea036c94d5f60e544de006453ee5c71ad.tar.gz | |
Initial hello world playbook
| -rw-r--r-- | hello_world.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hello_world.yml b/hello_world.yml new file mode 100644 index 0000000..20632c6 --- /dev/null +++ b/hello_world.yml @@ -0,0 +1,7 @@ +- name: Hello World Sample + hosts: all + tasks: + - name: Hello Message + debug: + msg: "Hello World!" + |
