a
Some checks failed
Terraform CI/CD / terraform (push) Failing after 15s

This commit is contained in:
2025-12-23 17:43:24 +01:00
parent aaeb837cf0
commit b85b3008b0

View File

@@ -17,17 +17,17 @@ variable NETBOX_API_TOKEN {
sensitive = true sensitive = true
} }
variable hcloud_token { variable HETZNER_API_TOKEN {
type = string type = string
description = "hetzner cloud api token" description = "hetzner cloud api token"
sensitive = true sensitive = true
} }
provider "netbox" { provider "netbox" {
server_url = "http://91.98.205.65:8000" server_url = var.NETBOX_SERVER_URL
api_token = var.NETBOX_API_TOKEN api_token = var.NETBOX_API_TOKEN
} }
provider "hcloud" { provider "hcloud" {
token = var.hcloud_token token = var.HETZNER_API_TOKEN
} }