Skip to content

Commit

Permalink
Updated examples of setting Customized Storage Accounts & Keys in env…
Browse files Browse the repository at this point in the history
…iroment varialbe
  • Loading branch information
blueww committed Jul 3, 2023
1 parent 501f738 commit a60b810
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
## Upcoming Release

General:

- Updated examples of setting Customized Storage Accounts & Keys in enviroment varialbe.

Table:

- Fixed issue with query table fail with filter condition as string.Empty. (issue #1880)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,13 +447,13 @@ Azurite V3 allows customizing storage account names and keys by providing enviro
For example, customize one storage account which has only one key:

```cmd
set AZURITE_ACCOUNTS="account1:key1"
set AZURITE_ACCOUNTS=account1:key1
```

Or customize multi storage accounts and each has 2 keys:

```cmd
set AZURITE_ACCOUNTS="account1:key1:key2;account2:key1:key2"
set AZURITE_ACCOUNTS=account1:key1:key2;account2:key1:key2
```

Azurite will refresh customized account name and key from environment variable every minute by default. With this feature, we can dynamically rotate account key, or add new storage accounts on the air without restarting Azurite instance.
Expand Down

0 comments on commit a60b810

Please sign in to comment.