initial commit

This commit is contained in:
2025-08-28 22:54:52 -07:00
commit ab3009d329
9 changed files with 368 additions and 0 deletions

14
terraform/provider.tf Normal file
View File

@@ -0,0 +1,14 @@
terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.47"
}
}
required_version = ">= 1.3.0"
}
provider "hcloud" {
token = var.hcloud_token
}