Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 921 Bytes

File metadata and controls

47 lines (30 loc) · 921 Bytes

CacheFly Terraform Provider - Examples

Examples for using the CacheFly Terraform provider to manage your CDN infrastructure.

🚀 Quick Start

New to CacheFly? Start here: quickstart/

This minimal example gets you up and running in under 5 minutes with a basic CDN service.

📚 Examples by Development Phase

Currently Available

📋 Prerequisites

  1. CacheFly Account with API access
  2. API Token from your CacheFly dashboard
  3. Terraform >= 1.0 installed

🔧 Setup

Environment Variable (Recommended)

export CACHEFLY_API_TOKEN="your-api-token-here"

Provider Configuration

terraform {
  required_providers {
    cachefly = {
      source = "cachefly/cachefly" 
    }
  }
}

provider "cachefly" {
  # Uses CACHEFLY_API_TOKEN environment variable
}