diff options
author | Christian Segundo | 2023-05-05 21:57:34 +0200 |
---|---|---|
committer | Christian Segundo | 2023-05-05 21:57:34 +0200 |
commit | 199d81aee9cf4042aaee456bb57a64e6d1607b51 (patch) | |
tree | 50c88e87747feb81fe9e55187ed86c2c74249323 | |
download | certbot-dns-cloudflare-199d81aee9cf4042aaee456bb57a64e6d1607b51.tar.gz |
Add readme
-rw-r--r-- | README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..ff4894e --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# certbot-dns-cloudflare + +Wrapper of `geerlingguy.certbot` to generate certificates using DNS challenges and Cloudflare. + +##### requirements.yml + +```yaml +roles: + - src: git+https://git.segundo.io/Ansible/certbot-dns-cloudflare + name: certbot-dns-cloudflare +``` + +## Example playbook + +See [`vars/main.yml`](/Ansible/etc-aliases/tree/vars/main.yml) & [`defaults/main.yml`](/Ansible/etc-aliases/tree/defaults/main.yml) + +```yaml +--- +- hosts: foo + roles: + - role: certbot-dns-cloudflare + vars: + certbot_cloudflare_api_token: xxxxx + certbot_admin_email: foo@bar + certbot_certs: + - domains: + - "*.foo.bar" + - "foo.bar" +``` |