Skip to content

Commit

Permalink
chore: Update configuration/storage.mdx
Browse files Browse the repository at this point in the history
Co-authored-by: Roman Dmytrenko <[email protected]>
  • Loading branch information
markphelps and erka authored Dec 23, 2023
1 parent 7778a41 commit 8e9e39e
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions configuration/storage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -382,13 +382,20 @@ The following is an example of how to configure Flipt to leverage this backend t
also be required for Flipt to authenticate with the target object-store.
</Note>

These should be provided as environment variables to the Flipt server process:

```bash
AZURE_STORAGE_ACCOUNT=...
AZURE_STORAGE_KEY=...
```

These should be provided as environment variables to the Flipt server process. There are 2 options supported for authentication:

Check failure on line 385 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`

Check failure on line 386 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
* Using [Azure credentials](https://learn.microsoft.com/en-us/azure/developer/go/azure-sdk-authentication?tabs=bash#2-authenticate-with-azure)

Check failure on line 387 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Replace `··*` with `-`
```bash

Check failure on line 388 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Replace `··` with `⏎`
AZURE_CLIENT_ID=... #Application ID of an Azure service principal

Check failure on line 389 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
AZURE_TENANT_ID=... #ID of the application's Microsoft Entra tenant

Check failure on line 390 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
AZURE_CLIENT_SECRET=... #Password of the Azure service principal

Check failure on line 391 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
```

Check failure on line 392 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
* Using Azure Blob storage [account keys](https://learn.microsoft.com/en-us/azure/storage/common/storage-account-keys-manage?tabs=azure-portal)

Check failure on line 393 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Replace `··*` with `⏎-`

Check failure on line 394 in configuration/storage.mdx

View workflow job for this annotation

GitHub Actions / lint

Delete `··`
```bash
AZURE_STORAGE_ACCOUNT=... # account name
AZURE_STORAGE_KEY=... # secret shared key
```
### OCI

Since `v1.31.0`, Flipt supports using any [OCI](https://opencontainers.org/) compatible registry as a declarative backend source.
Expand Down

0 comments on commit 8e9e39e

Please sign in to comment.