Skip to content

Commit defce20

Browse files
review comments - copilot
1 parent b9e8c1c commit defce20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy/azure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This directory contains an Azure Bicep template (`bicep/main.bicep`) and support
1212
Two sample parameter files are provided to help you tailor deployments:
1313

1414
- `bicep/params.json`: Baseline configuration that deploys the MongoDB MCP server with authentication disabled or using default settings. Use this when testing in development environments or when external authentication is not required.
15-
- `bicep/paramsWithAuthEnabled.json`: Extends the baseline deployment and enables explicit authentication configuration (for example, username/password, secrets, or identity inputs). Use this when you want the server protected with credentials.
15+
- `bicep/paramsWithAuthEnabled.json`: Extends the baseline deployment and enables Microsoft Entra ID (Azure AD) authentication using managed identity and client application IDs. Use this when you want the server protected with Azure AD authentication via managed identity.
1616

1717
> **Tip:** Update the image reference, secrets, networking, and any other environment-specific values in the chosen parameter file before deployment.
1818

deploy/azure/bicep/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ var authEnvVars = authMode == 'MicrosoftMIBasedAuth'
101101
value: authTenantId
102102
}
103103
{
104-
// Client ID of the Azure AD App representing the your container app
104+
// Client ID of the Azure AD App representing your container app
105105
name: 'MDB_MCP_AZURE_MANAGED_IDENTITY_CLIENT_ID'
106106
value: authClientId
107107
}

0 commit comments

Comments
 (0)