Skip to content

[Onboard] Support MCP Tools for Azure Terraform#2382

Open
liuwuliuyun wants to merge 5 commits intomainfrom
tool-Terraform
Open

[Onboard] Support MCP Tools for Azure Terraform#2382
liuwuliuyun wants to merge 5 commits intomainfrom
tool-Terraform

Conversation

@liuwuliuyun
Copy link
Copy Markdown

@liuwuliuyun liuwuliuyun commented Apr 10, 2026

What does this PR do?

Adds a new Azure Terraform toolset to the Azure MCP Server with 10 tools across 5 functional areas:

  • AzureRM Provider Docs (azureterraform_azurerm_get) — Retrieve AzureRM provider documentation for Terraform resources
  • AzAPI Provider Docs (azureterraform_azapi_get) — Retrieve AzAPI provider documentation for Azure resources by resource type and API version
  • Azure Verified Modules (AVM) (azureterraform_avm_list, azureterraform_avm_versions, azureterraform_avm_get) — List, query versions, and retrieve documentation for Azure Verified Modules
  • Azure Export for Terraform (aztfexport) (azureterraform_aztfexport_resource, azureterraform_aztfexport_resourcegroup, azureterraform_aztfexport_query) — Generate aztfexport commands to export Azure resources to Terraform configuration
  • Conftest Policy Validation (azureterraform_conftest_workspace, azureterraform_conftest_plan) — Generate conftest commands to validate Terraform configurations against Azure policies

These tools are bundled in a single PR because they form a cohesive toolset for Terraform workflows on Azure, sharing common models, services, and infrastructure. Splitting them would create artificial boundaries within tightly coupled code.

Azure Terraform documentation:

GitHub issue number?

#2215

Pre-merge Checklist

  • Required for All PRs
    • Read contribution guidelines
    • PR title clearly describes the change
    • Commit history is clean with descriptive messages (cleanup guide)
    • Added comprehensive tests for new/modified functionality
    • Created a changelog entry if the change falls among the following: new feature, bug fix, UI/UX update, breaking change, or updated dependencies. Follow the changelog entry guide
  • For MCP tool changes:
    • One tool per PR: This PR adds or modifies only one MCP tool for faster review cycles
      • N/A: These 10 tools form a tightly coupled toolset sharing common models, services, and infrastructure. Bundled intentionally.
    • Updated servers/Azure.Mcp.Server/README.md and/or servers/Fabric.Mcp.Server/README.md documentation
    • Validate README.md changes running the script ./eng/scripts/Process-PackageReadMe.ps1. See Package README
    • For new or modified tool descriptions, ran ToolDescriptionEvaluator and obtained a score of 0.4 or more and a top 3 ranking for all related test prompts
    • For tools with new names, including new tools or renamed tools, update consolidated-tools.json
    • For renamed tools, follow the Tool Rename Checklist and tag the PR with the breaking-change label
      • N/A: No tools renamed.
    • For new tools associated with Azure services or publicly available tools/APIs/products, add URL to documentation in the PR description
  • Extra steps for Azure MCP Server tool changes:
    • Updated command list in servers/Azure.Mcp.Server/docs/azmcp-commands.md
    • Ran ./eng/scripts/Update-AzCommandsMetadata.ps1 to update tool metadata in azmcp-commands.md (required for CI)
    • Updated test prompts in servers/Azure.Mcp.Server/docs/e2eTestPrompts.md
    • 👉 For Community (non-Microsoft team member) PRs:
      • Security review: Reviewed code for security vulnerabilities, malicious code, or suspicious activities before running tests (crypto mining, spam, data exfiltration, etc.)
      • Manual tests run: added comment /azp run mcp - pullrequest - live to run Live Test Pipeline

@liuwuliuyun liuwuliuyun force-pushed the tool-Terraform branch 2 times, most recently from 2027c44 to e4b41f5 Compare April 10, 2026 04:02
@liuwuliuyun
Copy link
Copy Markdown
Author

AOT Analysis:

./eng/scripts/Analyze-AOT-Compact.ps1                                                
Running AOT compatibility (trimming) analysis for runtime: win-x64 ...
Deleting project obj directory: C:\Users\yunliu1\Documents\mcp\servers\Azure.Mcp.Server\src\obj
Executing: dotnet publish C:/Users/yunliu1/Documents/mcp/servers/Azure.Mcp.Server/src/Azure.Mcp.Server.csproj --configuration Release --runtime win-x64 --self-contained true /p:PublishTrimmed=true /p:TrimmerSingleWarn=false /p:TreatWarningsAsErrors=false
AOT compatibility analysis complete. No trimmer/AOT warnings found. See C:/Users/yunliu1/Documents/mcp/.work/aotCompactReport/aot-compact-report.txt.
Empty JSON report written to: C:/Users/yunliu1/Documents/mcp/.work/aotCompactReport/aot-compact-report.json
HTML report generated: C:/Users/yunliu1/Documents/mcp/.work/aotCompactReport/aot-compact-report.html
Opening report in default browser...
HTML report generated: C:/Users/yunliu1/Documents/mcp/.work/aotCompactReport/aot-compact-report.html

@liuwuliuyun
Copy link
Copy Markdown
Author

Spelling Check:

npx cspell lint --config .vscode/cspell.json --no-must-find-files --root . "tools/Azure.Mcp.Tools.AzureTerraform/**/*.cs" "tools/Azure.Mcp.Tools.AzureTerraformBestPractices/**/*.cs"
Negative glob exclusions are not supported: !**/.devcontainer/**
CSpell: Files checked: 75, Issues found: 0 in 0 files.

@liuwuliuyun liuwuliuyun marked this pull request as ready for review April 15, 2026 04:40
@liuwuliuyun liuwuliuyun requested review from a team as code owners April 15, 2026 04:40
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Adds a new Azure Terraform area to the Azure MCP Server, providing tools for AzureRM/AzAPI documentation lookup, Azure Verified Modules (AVM) discovery, aztfexport command generation, and conftest policy validation.

Changes:

  • Introduces a new Azure.Mcp.Tools.AzureTerraform tool project (commands, services, models, options) and registers it in the server.
  • Adds unit tests for new command/service behaviors and adds the new test project to the solution.
  • Updates server docs/metadata (commands list, e2e prompts, consolidated tools, README), CODEOWNERS, spelling dictionary, and changelog.

Reviewed changes

Copilot reviewed 80 out of 80 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/Conftest/ConftestWorkspaceValidationCommandTests.cs Adds command tests for conftest workspace validation tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/Conftest/ConftestServiceTests.cs Adds unit tests for conftest command generation and install help
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/Conftest/ConftestPlanValidationCommandTests.cs Adds command tests for conftest plan validation tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AzureRMDocsServiceParsingTests.cs Adds parsing tests for AzureRM markdown extraction helpers
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AzureRMDocsGetCommandTests.cs Adds command tests for AzureRM docs tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/Azure.Mcp.Tools.AzureTerraform.UnitTests.csproj Introduces new unit test project and dependencies
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AztfexportServiceTests.cs Adds tests for aztfexport command generation and install help
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AztfexportResourceGroupCommandTests.cs Adds command tests for aztfexport resource-group tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AztfexportResourceCommandTests.cs Adds command tests for aztfexport resource tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AztfexportQueryCommandTests.cs Adds command tests for aztfexport query tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AzApiDocsServiceFormatTests.cs Adds tests for AzAPI HCL formatting output
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AzAPIDocsGetCommandTests.cs Adds command tests for AzAPI docs tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AvmVersionListCommandTests.cs Adds command tests for AVM version listing tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AvmModuleListCommandTests.cs Adds command tests for AVM module listing tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AvmDocumentationGetCommandTests.cs Adds command tests for AVM documentation retrieval tool
tools/Azure.Mcp.Tools.AzureTerraform/tests/Azure.Mcp.Tools.AzureTerraform.UnitTests/AvmDocsServiceParsingTests.cs Adds parsing tests for AVM CSV and repo URL mapping
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/IConftestService.cs Adds interface for conftest availability check and command generation
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/IAzureRMDocsService.cs Adds interface for AzureRM docs retrieval
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/IAztfexportService.cs Adds interface for aztfexport availability check and command generation
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/IAzApiExamplesService.cs Adds interface for AzAPI terraform example retrieval
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/IAzAPIDocsService.cs Adds interface for AzAPI docs/schema retrieval
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/IAvmDocsService.cs Adds interface for AVM listing/version/docs retrieval
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/ConftestService.cs Implements conftest command generation, install help, and policy args
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AzureRMDocsService.cs Implements AzureRM markdown fetch + parsing (summary/args/attrs/examples/notes)
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AztfexportService.cs Implements aztfexport command generation and install help
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AzApiExamplesService.cs Implements fetching AzAPI Terraform samples from template-reference-generator
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AzAPIDocsService.cs Implements schema formatting for AzAPI resources using Bicep schema generator
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AvmJsonContext.cs Adds source-gen JSON context for GitHub release deserialization
tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AvmDocsService.cs Implements AVM module CSV parsing, caching, GitHub releases/README retrieval
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/Conftest/ConftestWorkspaceValidationOptions.cs Adds option model for conftest workspace command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/Conftest/ConftestPlanValidationOptions.cs Adds option model for conftest plan command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AzureTerraformOptionDefinitions.cs Defines System.CommandLine options for all AzureTerraform tools
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AzureRMDocsOptions.cs Adds options model for AzureRM docs command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AztfexportResourceOptions.cs Adds options model for aztfexport resource command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AztfexportResourceGroupOptions.cs Adds options model for aztfexport resource-group command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AztfexportQueryOptions.cs Adds options model for aztfexport query command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AzAPIDocsOptions.cs Adds options model for AzAPI docs command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AvmVersionOptions.cs Adds options model for AVM versions command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AvmModuleListOptions.cs Adds options model for AVM list command
tools/Azure.Mcp.Tools.AzureTerraform/src/Options/AvmDocumentationOptions.cs Adds options model for AVM get-docs command
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/InstallationMethod.cs Adds model for install methods in tool responses
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/InstallationHelp.cs Adds model for install help in tool responses
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/GitHubRelease.cs Adds GitHub release DTO for AVM versions
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/ConftestCommandResult.cs Adds response model for conftest command generation
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AzureTerraformTelemetryTags.cs Adds telemetry tag constants for the AzureTerraform area
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AzureRMDocsResult.cs Adds response model for AzureRM docs tool
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AztfexportCommandResult.cs Adds response model for aztfexport command generation
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AzAPIExample.cs Adds model for AzAPI sample snippets
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AzAPIDocsResult.cs Adds response model for AzAPI docs/schema tool
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AvmVersionListResult.cs Adds response model for AVM versions tool
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AvmVersion.cs Adds AVM version DTO
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AvmModuleListResult.cs Adds response model for AVM list tool
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AvmModule.cs Adds AVM module DTO
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AvmDocumentationResult.cs Adds response model for AVM get-docs tool
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/AttributeDetail.cs Adds model for parsed AzureRM attributes
tools/Azure.Mcp.Tools.AzureTerraform/src/Models/ArgumentDetail.cs Adds model for parsed AzureRM arguments (incl. block args)
tools/Azure.Mcp.Tools.AzureTerraform/src/GlobalUsings.cs Adds global usings for System.CommandLine + MCP core option helpers
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/Conftest/ConftestWorkspaceValidationCommand.cs Adds conftest workspace command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/Conftest/ConftestPlanValidationCommand.cs Adds conftest plan command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AzureTerraformJsonContext.cs Adds source-gen JSON context for tool responses
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AzureRMDocsGetCommand.cs Adds AzureRM docs command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AztfexportResourceGroupCommand.cs Adds aztfexport resource-group command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AztfexportResourceCommand.cs Adds aztfexport resource command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AztfexportQueryCommand.cs Adds aztfexport query command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AzAPIDocsGetCommand.cs Adds AzAPI docs/schema command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AvmVersionListCommand.cs Adds AVM versions command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AvmModuleListCommand.cs Adds AVM module list command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/Commands/AvmDocumentationGetCommand.cs Adds AVM documentation retrieval command implementation
tools/Azure.Mcp.Tools.AzureTerraform/src/AzureTerraformSetup.cs Registers AzureTerraform services/commands and defines command groups
tools/Azure.Mcp.Tools.AzureTerraform/src/Azure.Mcp.Tools.AzureTerraform.csproj Introduces the new AzureTerraform tool project and dependencies
tools/Azure.Mcp.Tools.AzureTerraform/src/AssemblyInfo.cs Exposes internals to unit tests/live tests
servers/Azure.Mcp.Server/src/Resources/consolidated-tools.json Adds two aggregated tool entries mapping to AzureTerraform tools
servers/Azure.Mcp.Server/src/Program.cs Registers AzureTerraform area with the server
servers/Azure.Mcp.Server/docs/e2eTestPrompts.md Adds e2e prompts for AzureTerraform tools
servers/Azure.Mcp.Server/docs/azmcp-commands.md Documents new AzureTerraform CLI commands
servers/Azure.Mcp.Server/changelog-entries/1774593854839.yaml Adds changelog entry for AzureTerraform toolset
servers/Azure.Mcp.Server/README.md Adds AzureTerraform example prompts + service area list entry
Microsoft.Mcp.slnx Adds AzureTerraform projects to the solution
.vscode/cspell.json Adds Terraform-related terms to spelling dictionary
.github/CODEOWNERS Adds code owners for AzureTerraform tool directory
Comments suppressed due to low confidence (4)

tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AvmDocsService.cs:1

  • Lock is not available on most target frameworks in current .NET LTS releases; this will fail to compile unless the repo targets a framework that includes System.Threading.Lock. Replace this with a standard object (used with the lock statement) or another widely-available sync primitive (e.g., SemaphoreSlim) to keep the caching thread-safe and buildable.
    tools/Azure.Mcp.Tools.AzureTerraform/src/Services/ConftestService.cs:1
  • The policySet switch is case-sensitive, but later checks treat policySet case-insensitively (e.g., avmsec severity filter). This means inputs like AVMSEC will silently select ./policy instead of ./policy/avmsec. Normalize policySet (e.g., ToLowerInvariant()) before the switch or use a case-insensitive comparison approach for selecting policyPath.
    tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AzAPIDocsService.cs:1
  • Stripping a trailing s to compute the Terraform label can produce incorrect labels for types like .../status (becomes statu) or other nouns where naive singularization is wrong. Since the label is arbitrary, prefer leaving lastPart unchanged (or using a safer normalization, e.g., ToLowerInvariant() + replace invalid characters) to avoid generating surprising/incorrect labels.
    tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AzAPIDocsService.cs:1
  • This method returns text that is later embedded inside quoted HCL strings. If prop.Description or prop.Modifiers contains double quotes, backslashes, or newlines, the generated HCL will become invalid. Escape these values for HCL-string safety (at minimum: \\, \", and line breaks) before interpolation.

Comment thread servers/Azure.Mcp.Server/README.md Outdated
Comment thread servers/Azure.Mcp.Server/README.md Outdated
Comment thread servers/Azure.Mcp.Server/src/Resources/consolidated-tools.json Outdated
Copy link
Copy Markdown
Contributor

@jongio jongio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Solid new toolset. A few issues to address - 3 bugs in service logic and some structural items.

Comment thread tools/Azure.Mcp.Tools.AzureTerraform/src/Services/AvmDocsService.cs
@liuwuliuyun
Copy link
Copy Markdown
Author

Hi @jongio , thanks for the review comments, beside changes replied, I also updated AzApiDocsServiceFormatTests.cs assertion updated to match new ToLowerInvariant() label behavior.

@liuwuliuyun
Copy link
Copy Markdown
Author

liuwuliuyun commented Apr 16, 2026

The build failure is caused by a repo-wide NuGet vulnerability issue, not by changes in this PR.

Root cause: System.Security.Cryptography.Xml 10.0.0 has two newly published high-severity CVEs (GHSA-37gx-xxp4-5rgx, GHSA-w3x6-4m5h-cxqf). Since the repo has TreatWarningsAsErrors enabled, the NU1903 audit warning becomes a build-breaking error during restore.

This affects every project in the solution (Storage, SignalR, ServiceFabric, ServiceBus, Redis, Quota, Pricing, Speech, etc.) and will block all PRs until the package is updated or the warning is suppressed on main.

Copy link
Copy Markdown
Contributor

@jongio jongio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All 7 items from my earlier review are fixed correctly - verified in a local checkout. Case normalization in ConftestService, the label lowercasing + HCL escaping in AzAPIDocsService, the AzureRMDocs parser extraction, the DTO file split in AzApiExamplesService, the GitHub rate-limit handling in AvmDocsService, and the parallelism clamp in AztfexportService all look good.

CI build failure on this branch reproduces locally on main - it's the repo-wide System.Security.Cryptography.Xml 10.0.0 advisory (GHSA-37gx-xxp4-5rgx / GHSA-w3x6-4m5h-cxqf) hitting NU1903 under TreatWarningsAsErrors. Not caused by this PR and it'll unblock once the package is bumped on main.

…, and conftest tools

Add 10 new MCP tools for Terraform workflows on Azure:
- AzureRM and AzAPI provider documentation retrieval
- Azure Verified Modules (AVM) listing, versions, and documentation
- Azure Export for Terraform (aztfexport) resource, resource group, and query export
- Conftest policy validation for workspace files and plan files

Includes comprehensive unit tests, consolidated tool definitions, CODEOWNERS,
changelog entry, README updates, e2e test prompts, and telemetry tagging.

Closes #2215
… parsing

- Moved markdown parsing logic from AzureRMDocsService to a new AzureRMDocsParser class for better separation of concerns.
- Introduced RemarksJson and TerraformSampleEntry models for structured data handling.
- Updated AzApiExamplesService to utilize new models and parsing methods.
- Added clamping for parallelism in AztfexportService methods to ensure valid input.
- Refactored ConftestService to handle policy set names in a case-insensitive manner.
- Adjusted unit tests to reflect changes in method calls and expected outputs.
@liuwuliuyun
Copy link
Copy Markdown
Author

liuwuliuyun commented Apr 17, 2026

Rebase on to main to fix the CLI errors and resolve merging conflict.

@liuwuliuyun
Copy link
Copy Markdown
Author

Hi @jongio, thanks for the feedback. Could you please re-approve the PR? I need to resolve a few merge conflicts related to the Azure Backup tools. Thanks again for your help!

@liuwuliuyun liuwuliuyun enabled auto-merge (squash) April 17, 2026 02:53
@liuwuliuyun liuwuliuyun requested a review from jongio April 17, 2026 03:26
Copy link
Copy Markdown
Contributor

@jongio jongio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Re-verified after the rebase on main. All 7 items from my earlier review are still correctly addressed, build is clean, and all 116 unit tests pass. The rebase only pulled in unrelated Backup tools from main, no Terraform toolset changes since my approval.

@joshfree - this one is ready for a core team member to take a second look and approve.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Untriaged

Development

Successfully merging this pull request may close these issues.

3 participants