mirror of
https://github.com/nikdoof/ansible-certbot.git
synced 2025-12-13 07:32:15 +00:00
12 lines
228 B
YAML
12 lines
228 B
YAML
---
|
|
- name: Write out DigitalOcean auth key
|
|
ansible.builtin.template:
|
|
src: do_secrets.j2
|
|
dest: /root/do_secrets.ini
|
|
mode: "0600"
|
|
owner: root
|
|
group: root
|
|
when:
|
|
- certbot_digitalocean_token is defined
|
|
|