--- - name: Gather package facts. package_facts: manager: "auto" - name: Clone dehydrated repo. ansible.builtin.git: repo: 'https://github.com/dehydrated-io/dehydrated.git' dest: "{{ dehydrated_location }}" version: "{{ dehydrated_version }}" - name: Ensure dehydrated symlink is present. ansible.builtin.file: src: "{{ dehydrated_location }}/dehydrated" dest: "{{ dehydrated_path }}" state: link - name: Ensure config directory is present. ansible.builtin.file: path: "{{ dehydrated_config }}" state: directory - name: Ensure domains.txt is present. ansible.builtin.file: path: "{{ dehydrated_config }}/domains.txt" state: touch - name: Ensure config is present. ansible.builtin.template: src: config.j2 dest: "{{ dehydrated_config }}/config" notify: dehydrated register - name: Create wellknown directory. file: state: directory path: /var/www/letsencrypt