From 4fd20a91365f0afc5107025293da90194c1dbe5e Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 15 Apr 2024 20:17:54 -0700 Subject: [PATCH] Simple test playbook to confirm things are working as expected --- infra/static-vultr/ansible/test-setup.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 infra/static-vultr/ansible/test-setup.yml 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