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

View File

@@ -0,0 +1,35 @@
# roles/srv-proxy-6-6-domain/tasks/02_enable_cf_dev_mode.yml
---
# Enables Cloudflare Development Mode (bypasses cache for ~3 hours).
# Uses the same auth token as in 01_cleanup.yml: certbot_dns_api_token
# Assumes `domain` and (optionally) `cf_zone_id` are available.
# Safe to run repeatedly; only changes when the mode is not already "on".
- name: "Read current Cloudflare development_mode setting"
ansible.builtin.uri:
url: "https://api.cloudflare.com/client/v4/zones/{{ cf_zone_id }}/settings/development_mode"
method: GET
headers:
Authorization: "Bearer {{ certbot_dns_api_token }}"
Content-Type: "application/json"
return_content: yes
register: cf_dev_mode_current
- name: "Enable Cloudflare Development Mode"
ansible.builtin.uri:
url: "https://api.cloudflare.com/client/v4/zones/{{ cf_zone_id }}/settings/development_mode"
method: PATCH
headers:
Authorization: "Bearer {{ certbot_dns_api_token }}"
Content-Type: "application/json"
body:
value: "on"
body_format: json
return_content: yes
register: cf_dev_mode_enable
changed_when: >
cf_dev_mode_current.json.result.value is defined and
cf_dev_mode_current.json.result.value != 'on'
when:
- cf_zone_id is defined
- cf_dev_mode_current.json.result.value | default('off') != 'on'