You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/feature_flag_source.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,22 @@ sources:
83
83
selector: 'source=database,app=weatherapp' # flag filtering options
84
84
```
85
85
86
+
### Azure Blob Storage
87
+
88
+
Given below is an example configuration with provider type `azblob` and supported options,
89
+
90
+
```yaml
91
+
sources:
92
+
- source: azblob://my-bucket/test.json # my-bucket - container name
93
+
provider: azblob
94
+
envVars:
95
+
- name: AZURE_STORAGE_ACCOUNT
96
+
value: <account_name>
97
+
- name: AZURE_STORAGE_SAS_TOKEN
98
+
value: <SAS token>
99
+
```
100
+
Other type of credentials for Azure Blob Storage are supported, for details (see [AZ credentials config](https://pkg.go.dev/gocloud.dev/blob/azureblob#hdr-URLs))
101
+
86
102
## Sidecar configurations
87
103
88
104
`FeatureFlagSource`provides configurations to the injected flagd sidecar.
0 commit comments