mykiwi/mykiwi.blogpublic Fork 0
main
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.

versions.tf · 15 lines · 408 BTerraform Blame HistoryRaw
Add Cloudflare provisioning and deploy tooling e4c5d34 Romain Gautier 11h ago1terraform {
2 required_version = ">= 1.6.0"
3
4 required_providers {
5 cloudflare = {
6 source = "cloudflare/cloudflare"
7 version = "~> 4.44"
8 }
9 }
10}
11
12# CLOUDFLARE_API_TOKEN is read from the environment automatically by the
13# provider - never pass the token in as a variable or tfvars value, since
14# that would land it in the (unencrypted, locally-stored) state file.
15provider "cloudflare" {}