This repo contains the Terraform, Ansible, and Capistrano configurations to deploy a static Jekyll site to multiple instances behind a LoadBalancer.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
524 B

---
- name: Extract Caddy
unarchive:
src: "{{ caddy_home }}/caddy.tar.gz"
dest: "{{ caddy_home }}"
copy: false
mode: 0644
owner: "{{ caddy_user }}"
group: "{{ caddy_user_details.group }}"
when: caddy_binary_cache.changed
tags: skip_ansible_lint
- name: Extract Caddy
unarchive:
src: "{{ caddy_home }}/caddy.tar.gz"
dest: "{{ caddy_home }}"
creates: "{{ caddy_home }}/caddy"
copy: false
mode: 0644
owner: "{{ caddy_user }}"
group: "{{ caddy_user_details.group }}"