mykiwi/mykiwi.blogpublic Fork 0
a74fe0a29252e8de5b737ff5cf56888380055981
Commits
Clone
git clone https://git.rickub.com/mykiwi/mykiwi.blog.git
git clone ssh://git@rickub.com/mykiwi/mykiwi.blog.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Add Cloudflare provisioning and deploy tooling e4c5d34 · on a74fe0a29252e8de5b737ff5cf56888380055981 · Romain Gautier · 13h ago
versions.tf · 15 lines · 408 BTerraform Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
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" {}