mirror of
https://github.com/nikdoof/ansible-certbot.git
synced 2025-12-13 07:32:15 +00:00
13 lines
290 B
YAML
13 lines
290 B
YAML
---
|
|
- name: Certbot - Write out DigitalOcean auth key
|
|
ansible.builtin.copy:
|
|
dest: /root/do_secrets.ini
|
|
mode: "0600"
|
|
owner: root
|
|
group: root
|
|
content: |
|
|
dns_digitalocean_token = {{ certbot_digitalocean_token }}
|
|
when:
|
|
- certbot_digitalocean_token is defined
|
|
|