This commit is contained in:
Josh 2026-01-09 00:22:05 +02:00
commit 52843aa9e7
13 changed files with 920 additions and 0 deletions

26
versions.tf Normal file
View file

@ -0,0 +1,26 @@
terraform {
required_version = ">= 1.0"
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.58"
}
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 4.52"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0"
}
}
}
provider "hcloud" {
token = var.hcloud_token
}
provider "cloudflare" {
api_token = var.cloudflare_api_token
}