Mint the NetBox token from the Vault netbox engine
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/plan Pipeline failed

Why:
- The netbox provider authenticated with a static netbox_token seeded by hand
  into KV; the vault-plugin-secrets-netbox engine mints a per-run ephemeral
  token that is lease-revoked when the run ends, removing the manual seed.

How:
- Read netbox/creds/terraform-infra via vault_generic_secret and pass the minted
  netbox_token to the netbox provider.
- Keep kea_token from KV for now (follow-up: its own ephemeral-token engine).

Depends on the netbox engine mount + netbox/creds/terraform-infra role/policy in
terraform-vault being applied first.
This commit is contained in:
2026-08-09 00:18:47 +10:00
parent 9bdf9ce9fc
commit a025819fcd
+11 -3
View File
@@ -5,8 +5,16 @@ provider "vault" {
skip_child_token = true
}
# KeaAPI and NetBox tokens live in a single Vault KV v2 secret. The vault
# provider authenticates with the VAULT_TOKEN set by the Makefile.
# NetBox API token: minted per run by the vault-plugin-secrets-netbox engine
# (netbox/creds/terraform-infra), lease-revoked when the run ends. This replaces
# the static netbox_token that was seeded into KV by hand.
data "vault_generic_secret" "netbox" {
path = "netbox/creds/terraform-infra"
}
# KeaAPI token still lives in the KV v2 secret (follow-up: give Kea its own
# ephemeral-token engine). The vault provider authenticates with the VAULT_TOKEN
# set by the Makefile.
data "vault_kv_secret_v2" "tokens" {
mount = "kv"
name = "service/terraform/infra"
@@ -14,7 +22,7 @@ data "vault_kv_secret_v2" "tokens" {
provider "netbox" {
server_url = var.netbox_server_url
api_token = data.vault_kv_secret_v2.tokens.data["netbox_token"]
api_token = data.vault_generic_secret.netbox.data["netbox_token"]
}
provider "kea" {