DOCS: Bunny DNS - Be more consistent in ENV variable example (#2772)

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
Jeffrey Cafferata 2024-01-09 17:01:32 +01:00 committed by GitHub
parent 1106e44620
commit e82a95b0d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ Example:
You can also use environment variables: You can also use environment variables:
```shell ```shell
export BUNNY_API_KEY=XXXXXXXXX export BUNNY_DNS_API_KEY=XXXXXXXXX
``` ```
{% code title="creds.json" %} {% code title="creds.json" %}
@ -27,7 +27,7 @@ export BUNNY_API_KEY=XXXXXXXXX
{ {
"bunny_dns": { "bunny_dns": {
"TYPE": "BUNNY_DNS", "TYPE": "BUNNY_DNS",
"api_key": "$BUNNY_API_KEY" "api_key": "$BUNNY_DNS_API_KEY"
} }
} }
``` ```