added azure-iac-exporter and azure-iac-generator as custom agents#546
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request adds two new custom agents for Azure Infrastructure as Code (IaC) workflows that work together to streamline IaC adoption:
- azure-iac-exporter: Analyzes existing Azure resources using Azure Resource Graph and ARM APIs to export resource configurations to IaC templates
- azure-iac-generator: Generates Infrastructure as Code templates in multiple formats (Bicep, ARM, Terraform, Pulumi) with format-specific validation and best practices
The agents are designed to work in tandem - the exporter analyzes live resources and hands off to the generator for template creation, supporting a workflow from existing infrastructure to standardized IaC templates.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
| agents/azure-iac-exporter.md | New agent file for exporting Azure resources to IaC templates with comprehensive resource analysis |
| agents/azure-iac-generator.md | New agent file for generating IaC code across multiple formats with format-specific validation |
| docs/README.agents.md | Added two new entries in the agents table with install buttons and descriptions |
Comments suppressed due to low confidence (2)
docs/README.agents.md:32
- The file reference should be
azure-iac-exporter.agent.mdinstead ofazure-iac-exporter.mdto match the correct agent file naming convention. This needs to be updated once the agent file is renamed to use the.agent.mdextension.
| [Azure IaC Exporter](../agents/azure-iac-exporter.md)<br />[](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fazure-iac-exporter.md)<br />[](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fazure-iac-exporter.md) | Export existing Azure resources to Infrastructure as Code templates (Bicep, ARM, Terraform, Pulumi) via Azure Resource Graph analysis and Azure Resource Manager API calls | |
agents/azure-iac-exporter.md:231
- The term should be "data plane" (two words) rather than "dataplane" (one word). This is the standard terminology used in Azure documentation and throughout the industry to refer to the layer that handles data operations.
- ✅ Comprehensive storage account configuration including dataplane settings
saikoumudi
force-pushed
the
skaluvak/iac-skills
branch
3 times, most recently
from
January 8, 2026 03:33
90db848 to
b6a42b4
Compare
saikoumudi
force-pushed
the
skaluvak/iac-skills
branch
from
January 8, 2026 03:36
b6a42b4 to
50e5614
Compare
codemillmatt
self-requested a review
January 9, 2026 23:04
codemillmatt
approved these changes
Jan 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.Description
Added 2 agents for Azure Infrastructure as Code workflows
azure-iac-exporter: Exports existing Azure resources to IaC templates by analyzing resource configurations via Azure Resource Graph and ARM APIs
azure-iac-generator: Generates Infrastructure as Code templates (Bicep, ARM, Terraform, Pulumi) with format-specific validation and best practices
These agents work together to streamline IaC adoption—the exporter analyzes live resources and hands off to the generator for template creation.
Type of Contribution
Additional Notes
Here's an example screenshot of the chat conversation to visualize the beginning of the workflow

By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.