Add hcloud provider configuration and firewall resource

This commit is contained in:
2025-12-22 23:05:16 +01:00
parent fcc9bf60be
commit 3e3837aede
3 changed files with 34 additions and 1 deletions

View File

@@ -17,7 +17,17 @@ variable netbox_token {
sensitive = true
}
variable hcloud_token {
type = string
description = "hetzner cloud api token"
sensitive = true
}
provider "netbox" {
url = http://91.98.205.65:8000
token = var.netbox_token
}
provider "hcloud" {
token = var.hcloud_token
}