litellm - 💡(How to fix) Fix Discontinuing Azure CI Access [6 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
BerriAI/litellm#23384Fetched 2026-04-08 00:37:04
View on GitHub
Comments
6
Participants
2
Timeline
10
Reactions
0
Timeline (top)
commented ×6labeled ×3closed ×1
RAW_BUFFERClick to expand / collapse

Similar to #23383, I will be discounting support/access to my company's Azure account for CI/CD testing.

extent analysis

Fix Plan

To address the issue of discounting support/access to the company's Azure account for CI/CD testing, we will implement Azure Active Directory (AAD) service principals for CI/CD pipelines.

Steps

  • Create a new AAD service principal:
    • Go to Azure Portal > Azure Active Directory > App registrations > New registration
    • Fill in the required information and create the app registration
  • Create a new client secret:
    • Go to Azure Portal > Azure Active Directory > App registrations > Your app registration > Certificates & secrets > New client secret
    • Add a description and create the client secret
  • Update CI/CD pipeline to use the service principal:
    • Install the Azure Login task in your CI/CD pipeline
    • Use the service principal credentials to login to Azure

Example Code

# Azure DevOps pipeline example
steps:
- task: AzureLogin@1
  displayName: 'Azure Login'
  inputs:
    azureSubscription: 'Your Azure Subscription'
    azureResourceGroupName: 'Your Azure Resource Group'
    servicePrincipalId: 'Your Service Principal Id'
    servicePrincipalKey: 'Your Service Principal Key'
    tenantId: 'Your Tenant Id'

Verification

  • Verify that the CI/CD pipeline can successfully authenticate to Azure using the service principal credentials.
  • Check the pipeline logs for any authentication errors.

Extra Tips

  • Make sure to store the service principal credentials securely using a secrets manager like Azure Key Vault.
  • Use the principle of least privilege when assigning permissions to the service principal.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING