ffddorf / netbox-vault-secrets

Work In Progress!
BSD 2-Clause "Simplified" License
78 stars 13 forks source link

Object not found in Vault #12

Closed lukap357 closed 2 years ago

lukap357 commented 2 years ago

image

Plugin config set to:

PLUGINS_CONFIG = { "netbox_vault_secrets": { "api_url": "http://127.0.0.1:8200/", # can be relative

Do I need to create the engine in Vault or does the plugin do it? Or do I need to add the path to the config?

kemeris2000 commented 2 years ago

Here is my config:

"netbox_vault_secrets": {
    "api_url": "https://xxx.xxx.com", # can be relative
    "kv_mount_path": "v1/password/"  # optional
}

and I had to manually create KV v2 secrets engine named "password/"

lukap357 commented 2 years ago

Thanks, it works like that.