mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
27 lines
464 B
HCL
27 lines
464 B
HCL
terraform {
|
|
required_version = ">= 1.6.0"
|
|
|
|
required_providers {
|
|
acme = {
|
|
source = "vancluever/acme"
|
|
version = "~> 2.0"
|
|
}
|
|
cloudflare = {
|
|
source = "cloudflare/cloudflare"
|
|
version = ">= 4.22.0"
|
|
}
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
version = ">= 4.0.5"
|
|
}
|
|
}
|
|
|
|
cloud {
|
|
organization = "gensokyo-zone"
|
|
hostname = "app.terraform.io"
|
|
|
|
workspaces {
|
|
name = "infrastructure"
|
|
}
|
|
}
|
|
}
|