-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathazure-identity-authentication.env
34 lines (24 loc) · 1.09 KB
/
azure-identity-authentication.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Example .env file for Azure Identity (DefaultAzureCredential) authentication
# Replace the values with your own
# Authentication method (required)
AZURE_DEVOPS_AUTH_METHOD=azure-identity
# Azure DevOps organization URL (required)
AZURE_DEVOPS_ORG_URL=https://dev.azure.com/your-organization
# Default project to use when not specified (optional)
AZURE_DEVOPS_DEFAULT_PROJECT=your-default-project
# API Version to use (optional, defaults to latest)
# AZURE_DEVOPS_API_VERSION=6.0
# Azure AD tenant ID (required for service principal authentication)
# AZURE_TENANT_ID=your-tenant-id
# Azure AD client ID (required for service principal authentication)
# AZURE_CLIENT_ID=your-client-id
# Azure AD client secret (required for service principal authentication)
# AZURE_CLIENT_SECRET=your-client-secret
# Server Configuration (optional)
PORT=3000
HOST=localhost
# Logging Level (optional)
LOG_LEVEL=info
# Note: When using DefaultAzureCredential, you don't need to set AZURE_TENANT_ID,
# AZURE_CLIENT_ID, and AZURE_CLIENT_SECRET if you're using other credential types
# like Managed Identity or Azure CLI.