blob: f04f4c53dad78207af6be578f28a62ddee5e836e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# certbot_dns_cloudflare
Wrapper of `geerlingguy.certbot` to generate certificates using DNS challenges and Cloudflare.
## Example playbook
```yaml
---
- hosts: foo
roles:
- role: someone_stole_my_name.certbot_dns_cloudflare
vars:
certbot_cloudflare_api_token: xxxxx
certbot_admin_email: foo@bar
certbot_certs:
- domains:
- "*.foo.bar"
- "foo.bar"
```
|