From 63c1567cd35a1760ebf59cc47794f6fa5f280cb9 Mon Sep 17 00:00:00 2001 From: Peter Lehmann Date: Fri, 17 May 2024 22:23:22 +0000 Subject: [PATCH] readme: finish sentence --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f02678..2b779df 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The login credentials are admin:admin ### Export data from an existing NetBox instance First we need to get a api token to authenticate against the api. -And store it in `NIXBOX_NETBOX_TOKEN` so NixBox can +And store it in `NIXBOX_NETBOX_TOKEN` so NixBox can use it: ```bash export NIXBOX_NETBOX_TOKEN=$(curl -s -X POST -H "Content-Type: application/json" -H "Accept: application/json; indent=4" https://demo.netbox.dev/api/users/tokens/provision/ --data '{ "username": "admin", "password": "admin" }' | jq -r -e .key) ```