Implmented dev mode für cloudflare

This commit is contained in:
2025-08-10 12:18:17 +02:00
parent 2fd83eaf55
commit fdceb0f792
6 changed files with 87 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
- name: "Purge everything from Cloudflare cache for domain {{ domain }}"
ansible.builtin.uri:
url: "https://api.cloudflare.com/client/v4/zones/{{ cf_zone_id }}/purge_cache"
method: POST
headers:
Authorization: "Bearer {{ certbot_dns_api_token }}"
Content-Type: "application/json"
body:
purge_everything: true
body_format: json
return_content: yes
register: cf_purge