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
> **Security Note**: For production deployments, prefer Managed Identity (`--azure-auth mi` or `--azure-auth default`) over connection strings, account keys, or SAS tokens. These credential-based methods should only be used for development or when Managed Identity is not available.
|`LASTFM_STATE`| string |`~/.lastfm`| Directory for storing state (watermarks, local output files). |
48
48
|`LASTFM_CONFIG`| string | none | Path to config file. If not set, searches `./`, `~/.lastfm/`, `/etc/lastfm/` for `config.yaml`. |
49
+
|`LASTFM_NO_PROGRESS`| boolean |`false`| Disable console progress bar. Useful for CI/CD pipelines or when redirecting output. |
49
50
50
51
### Azure Storage Variables
51
52
52
53
Required only when using `--output azure`:
53
54
54
55
| Variable | Type | Default | Description |
55
56
|----------|------|---------|-------------|
56
-
|`AZURE_STORAGE_ACCOUNT`| string | none | Azure Storage account name. Used with `--azure-auth default`or `--azure-auth mi`. |
57
+
|`AZURE_STORAGE_ACCOUNT`| string | none | Azure Storage account name. Used with `--azure-auth default`, `--azure-auth mi`, or `--azure-auth key`. |
57
58
|`AZURE_STORAGE_CONNECTION_STRING`| string | none |**Sensitive**. Full Azure Storage connection string. Used with `--azure-auth connstr`. |
59
+
|`AZURE_STORAGE_ACCOUNT_KEY`| string | none |**Sensitive**. Azure Storage account key. Used with `--azure-auth key`. |
58
60
59
-
> **Security Note**: Never commit `AZURE_STORAGE_CONNECTION_STRING` to version control. Use environment variables or Azure Key Vault.
61
+
> **Security Note**: Never commit `AZURE_STORAGE_CONNECTION_STRING`or `AZURE_STORAGE_ACCOUNT_KEY`to version control. Use environment variables or Azure Key Vault.
60
62
61
63
---
62
64
@@ -95,16 +97,18 @@ Required when `--output azure`:
0 commit comments