mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	Implmented dev mode für cloudflare
This commit is contained in:
		
							
								
								
									
										12
									
								
								roles/srv-proxy-6-6-domain/tasks/cloudflare/01_cleanup.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								roles/srv-proxy-6-6-domain/tasks/cloudflare/01_cleanup.yml
									
									
									
									
									
										Normal 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 | ||||
| @@ -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' | ||||
		Reference in New Issue
	
	Block a user