-
Notifications
You must be signed in to change notification settings - Fork 2k
added azure-iac-exporter and azure-iac-generator as custom agents #546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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
90db848 to
b6a42b4
Compare
b6a42b4 to
50e5614
Compare
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.