terraform { required_version = ">= 1.6.0" required_providers { cloudflare = { source = "cloudflare/cloudflare" version = "~> 4.44" } } } # CLOUDFLARE_API_TOKEN is read from the environment automatically by the # provider - never pass the token in as a variable or tfvars value, since # that would land it in the (unencrypted, locally-stored) state file. provider "cloudflare" {}