summaryrefslogtreecommitdiff
path: root/ansible-practice/01-playbook-hello.yml
diff options
context:
space:
mode:
authorboom2 <blizzack@blizzack.com>2023-11-21 14:11:56 -0500
committerboom2 <blizzack@blizzack.com>2023-11-21 14:11:56 -0500
commit62766cf1fd721d278e95821e05e6b41f7888eed5 (patch)
tree35c0866b9dbc09cdc695435a3aa6aa1424cac1a4 /ansible-practice/01-playbook-hello.yml
initial commit
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