Hello World

Here's a simple playbook that you can safely run on any vm to validate the connection: routing, firewall, user/machine credential and github

Add to your repository as hello-world-playbook.yml

YAML
---
- name: Hello World
  hosts: all
  tasks:
    - name: Print Message
      debug:
        msg: "Hello World."