hardcoded netbox url
Some checks failed
Terraform CI/CD / terraform (push) Failing after 15s

This commit is contained in:
2025-12-23 17:34:29 +01:00
parent 0fa1059c89
commit aaeb837cf0

View File

@@ -17,12 +17,6 @@ variable NETBOX_API_TOKEN {
sensitive = true
}
variable NETBOX_SERVER_URL {
type = string
description = "netbox server url"
sensitive = false
}
variable hcloud_token {
type = string
description = "hetzner cloud api token"
@@ -30,7 +24,7 @@ variable hcloud_token {
}
provider "netbox" {
server_url = var.NETBOX_SERVER_URL
server_url = "http://91.98.205.65:8000"
api_token = var.NETBOX_API_TOKEN
}