feat: empty terraform state

This commit is contained in:
2025-12-30 11:35:44 -05:00
parent 1ef0bd58cf
commit 68ecdfa766
6 changed files with 70 additions and 5 deletions

18
terraform/providers.tf Normal file
View File

@@ -0,0 +1,18 @@
terraform {
backend "s3" {
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.45"
}
}
}
provider "hcloud" {
token = var.hcloud_token
}