diff --git a/infra/static-vultr/ansible/test-setup.yml b/infra/static-vultr/ansible/test-setup.yml new file mode 100644 index 0000000..cc2e3b8 --- /dev/null +++ b/infra/static-vultr/ansible/test-setup.yml @@ -0,0 +1,12 @@ +--- +- hosts: webhost + remote_user: root + tasks: + - name: Echo something + shell: echo 'Testing playbook' + + - name: Testing HTTP egress + shell: curl http://google.com + + - name: Testing HTTPS egress + shell: curl https://google.com