feat: hetz cloud server provisioned

This commit is contained in:
2025-09-06 20:08:05 -04:00
parent ed972509ce
commit 4c13b3d2cb
16 changed files with 132 additions and 554 deletions

View File

@@ -1,11 +1,18 @@
terraform {
# The backend is stored in an S3 bucket.
backend "s3" {}
backend "s3" {
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.45"
}
}
}
# Access AWS through the IaC roles.
provider "aws" {
region = var.aws_region
access_key = var.aws_access
secret_key = var.aws_secret
}
provider "hcloud" {
token = var.hcloud_token
}