summaryrefslogtreecommitdiff
path: root/hello_world.yml
diff options
context:
space:
mode:
authorMatthew Jones <mat@matburt.net>2016-04-13 15:50:39 -0400
committerMatthew Jones <mat@matburt.net>2016-04-13 15:50:39 -0400
commit347e44fea036c94d5f60e544de006453ee5c71ad (patch)
tree39b93f0f42361c78d887edf7a0e45a9ce6c1df59 /hello_world.yml
parentInitial commit (diff)
downloadansible-tower-samples-347e44fea036c94d5f60e544de006453ee5c71ad.tar.gz
Initial hello world playbook
Diffstat (limited to 'hello_world.yml')
-rw-r--r--hello_world.yml7
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!"
+