From cd122a7dde242b3710be1478cacaa7b855e87256 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Thu, 11 Sep 2025 10:00:22 -0600 Subject: [PATCH] Address PR feedback --- docs/configuration/system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/system.md b/docs/configuration/system.md index 8c5bc6d17..8a73f629f 100644 --- a/docs/configuration/system.md +++ b/docs/configuration/system.md @@ -294,7 +294,7 @@ STORAGES = { This approach works because the environment variables are resolved during NetBox's configuration processing, before the third-party library attempts its own environment variable detection. -!!! warning "Common Gotcha" +!!! warning "Configuration Behavior" Simply setting environment variables like `AWS_STORAGE_BUCKET_NAME` without explicitly reading them in your configuration will not work. The variables must be read using `os.environ.get()` within your `configuration.py` file. ---