docs: azure_blob: document OAuth authentication support#2535
docs: azure_blob: document OAuth authentication support#2535zshuang0316 wants to merge 2 commits into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
📝 WalkthroughWalkthroughDocumentation for the Azure Blob output plugin adds OAuth-based auth modes ( ChangesAzure Blob Authentication Documentation
Sequence Diagram(s)sequenceDiagram
participant FluentBit as Fluent Bit (client)
participant AzureAD as Azure AD (token endpoint)
participant Blob as Azure Blob Storage
FluentBit->>AzureAD: Request token (service_principal / managed_identity / workload_identity)
AzureAD-->>FluentBit: Return OAuth access_token
FluentBit->>Blob: PUT/POST blob with Authorization: Bearer <token>
Blob-->>FluentBit: 201/200 OK
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
e624619 to
05784fb
Compare
eschabell
left a comment
There was a problem hiding this comment.
@zshuang0316 see comments inline on the files changed that need attention before review will pass.
|
|
||
| If a chunk arrives with the tag `kube.var.log.containers.app-default`, this configuration creates blobs under `kube/app-default/2025/12/16/05/042/abcd1234/...`. | ||
|
|
||
| ## OAuth authentication |
There was a problem hiding this comment.
@zshuang0316 use backticks around OAuth to get past vale issues here.
|
|
||
| ## OAuth authentication | ||
|
|
||
| In addition to shared key and SAS token authentication, the Azure Blob plugin supports Azure AD-based authentication using the following methods. |
There was a problem hiding this comment.
@zshuang0316 use backticks around SAS, Azure Blob, and Zaure AD to get past vale issues here.
|
|
||
| ### Workload identity | ||
|
|
||
| Use [Azure Workload Identity](https://azure.github.io/azure-workload-identity/docs/) to exchange a Kubernetes-projected service account token for an Azure AD access token. This is the recommended approach for workloads running in AKS. |
There was a problem hiding this comment.
@zshuang0316 use backticks around Azure AD and AKS to get past vale issues here.
There was a problem hiding this comment.
@zshuang0316 looks like you missed this vale issue?
Add new auth_type values (managed_identity, service_principal, workload_identity) and their required configuration parameters (tenant_id, client_id, client_secret, workload_identity_token_file). Add OAuth authentication section with examples for each method. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: zshuang0316 <zshuang0316@163.com>
05784fb to
a3b339b
Compare
Thanks, updated. |
eschabell
left a comment
There was a problem hiding this comment.
@zshuang0316 just one vale issue was missed in your last round of fixes, tackle this one and we're good to go. Thanks for the docs PR work!
|
|
||
| ### Workload identity | ||
|
|
||
| Use [Azure Workload Identity](https://azure.github.io/azure-workload-identity/docs/) to exchange a Kubernetes-projected service account token for an Azure AD access token. This is the recommended approach for workloads running in AKS. |
There was a problem hiding this comment.
@zshuang0316 looks like you missed this vale issue?
Signed-off-by: zshuang0316 <zshuang0316@163.com> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
eschabell
left a comment
There was a problem hiding this comment.
@zshuang0316 fixed issues for you, now waiting on code PR merging.
Add new auth_type values (managed_identity, service_principal, workload_identity) and their required configuration parameters (tenant_id, client_id, client_secret, workload_identity_token_file). Add OAuth authentication section with examples for each method.
Summary by CodeRabbit