summaryrefslogtreecommitdiff
path: root/ansible-practice/01-playbook-hello.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible-practice/01-playbook-hello.yml')
-rw-r--r--ansible-practice/01-playbook-hello.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/ansible-practice/01-playbook-hello.yml b/ansible-practice/01-playbook-hello.yml
new file mode 100644
index 0000000..d668dea
--- /dev/null
+++ b/ansible-practice/01-playbook-hello.yml
@@ -0,0 +1,11 @@
+# hello world
+# https://www.digitalocean.com/community/tutorial-series/how-to-write-ansible-playbooks
+---
+
+- name: "01 - Playing with Ansible - hello world"
+ hosts: all
+ tasks:
+ - name: Print message
+ debug:
+ msg: Hello Ansible World
+... \ No newline at end of file