feat: python gitignore

This commit is contained in:
2025-12-22 10:50:43 -05:00
parent cb05e7e9f7
commit 156c0113f1
4 changed files with 263 additions and 0 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
}