artemnikitin / cci

CDN Cache Invalidation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CDN Cache Invalidation Tool

Go Report Card codebeat badge Build Status

Description

Tool for invalidating cache for several CDN providers.
Currently supports:

Cloudfront (AWS)
Cloudflare

Get it

go get -u github.com/artemnikitin/cci

Use it

cci -config /path/to/config
cci -config https://example.com/config.json

Parameters:

  • config specified path to config on hard drive or URL
  • debug print additional info for debug, optional

Config

Should be present as JSON file.

{
	"cloudfront" : [{
		"access_key": "AWS access key",
		"secret_key": "AWS secret key",
		"distribution_id": "Cloudfront distribution ID",
		"resources": [
			"List of files for invalidation, optional",
			"Format: /index.html or /folder/*"
		]
	},
	{
		"access_key": "AWS access key",
		"secret_key": "AWS secret key",
		"distribution_id": "Cloudfront distribution ID"
	}],
	"cloudflare" : [{
		"email": "Cloudflare email",
		"key": "Cloudflare API key",
		"zone_id": "Cloudflare Zone ID",
		"purge_all": true
	},
	{
		"email": "Cloudflare email",
		"key": "Cloudflare API key",
		"zone_id": "Cloudflare Zone ID",
		"resources": [
			"List of files for invalidation, optional",
			"Format: http://example.com/index.html"
		]
	}]
}

About

CDN Cache Invalidation

License:MIT License


Languages

Language:Go 100.0%