Terraform added to the project, alongside a README

This commit is contained in:
Kat Inskip 2024-01-14 13:33:14 -08:00
parent bea9f708c7
commit 160f2aad20
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
15 changed files with 270 additions and 5 deletions

19
tf/terraform.tf Normal file
View file

@ -0,0 +1,19 @@
terraform {
required_version = ">= 1.6.0"
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = ">= 4.22.0"
}
}
cloud {
organization = "gensokyo-zone"
hostname = "app.terraform.io"
workspaces {
name = "infrastructure"
}
}
}