diff options
author | Paweł Dybiec <pawel.to.malpa@gmail.com> | 2019-02-03 14:35:05 +0100 |
---|---|---|
committer | Paweł Dybiec <pawel.to.malpa@gmail.com> | 2019-02-03 14:35:05 +0100 |
commit | 2406114b41265a9995fc76e20d63c85f4ce81492 (patch) | |
tree | 42c5f4df6eef18ddb642d21142dab3aafdf01f2e | |
parent | Sample services (diff) |
Certificate retrieval
-rw-r--r-- | dns.yml | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +--- + - name: Certbot + hosts: tamriel + remote_user: ansible_worker + tasks: + - synchronize: + src: ~/.ovh/ + dest: ~/ovh + - docker_container: + image: certbot/dns-ovh + name: certbot-ovh + #auto_remove: true + volumes: + - /etc/letsencrypt:/etc/letsencrypt:rw + - /var/lib/letsencrypt:/var/lib/letsencrypt:rw + - /home/ansible_worker/ovh:/opt/ovh:ro + command: certonly --dns-ovh --dns-ovh-propagation-seconds 60 --dns-ovh-credentials /opt/ovh/credentials.ini -d "dybiec.info,*.dybiec.info" + - file: + path: ~/ovh + state: absent |