Remove Hetzner Cloud Terraform provider version 1.57.0 and associated resources
Some checks failed
Terraform CI/CD / terraform (push) Has been cancelled

- Deleted the LICENSE file for the Hetzner Cloud Terraform provider.
- Removed the README.md file for the Hetzner Cloud Terraform provider.
- Deleted the compiled provider binary (terraform-provider-hcloud_v1.57.0.exe).
- Removed Terraform configuration files related to the Hetzner FTP server, production firewall, production network, and NetBox cluster.
- Deleted provider configuration in provider.tf, including required providers and sensitive variables.
This commit is contained in:
2025-12-23 20:26:53 +01:00
parent 79c49e1ac9
commit 516509c642
14 changed files with 0 additions and 3543 deletions

View File

@@ -1,39 +0,0 @@
terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "1.57.0"
}
netbox = {
source = "e-breuninger/netbox"
version = "5.0.0"
}
}
}
variable NETBOX_API_TOKEN {
type = string
description = "netbox api token"
sensitive = true
}
variable NETBOX_SERVER_URL {
type = string
description = "netbox Server URL"
sensitive = true
}
variable HETZNER_API_TOKEN {
type = string
description = "hetzner cloud api token"
sensitive = true
}
provider "netbox" {
server_url = var.NETBOX_SERVER_URL
api_token = var.NETBOX_API_TOKEN
}
provider "hcloud" {
token = var.HETZNER_API_TOKEN
}