Add netbox provider configuration and secret management

This commit is contained in:
2025-12-22 23:00:54 +01:00
parent eab6b40eca
commit fcc9bf60be
3 changed files with 13 additions and 0 deletions

View File

@@ -9,4 +9,15 @@ terraform {
version = "5.0.0"
}
}
}
variable netbox_token {
type = string
description = "netbox api token"
sensitive = true
}
provider "netbox" {
url = http://91.98.205.65:8000
token = var.netbox_token
}