-
Notifications
You must be signed in to change notification settings - Fork 155
Add section about using InfrastructureResolver classes to the Customize Azure resources article #4229
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
Add section about using InfrastructureResolver classes to the Customize Azure resources article #4229
Conversation
… Azure resources.
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 PR adds a new section to the "Customize Azure resources" documentation that explains how to use custom InfrastructureResolver classes to modify Azure Bicep generation. The addition provides developers with an alternative approach to customizing Azure resource provisioning beyond the existing methods.
Key changes:
- Added documentation section explaining InfrastructureResolver usage
- Created complete code example demonstrating how to override resource properties
- Provided snippet showing how to register the custom resolver in the AppHost
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
docs/azure/customize-azure-resources.md | Added new section documenting InfrastructureResolver customization approach |
docs/azure/snippets/customize-azure-with-infrastructure-resolver/AppHost.cs | Example code showing custom resolver implementation and registration |
docs/azure/snippets/customize-azure-with-infrastructure-resolver/CustomizeAzureWithInfrastructureResolver.csproj | Project file for the code example |
docs/azure/snippets/customize-azure-with-infrastructure-resolver/customize-azure-with-infrastructure-resolver.sln | Solution file for the code example |
docs/azure/snippets/customize-azure-with-infrastructure-resolver/appsettings.json | Application settings for the example |
docs/azure/snippets/customize-azure-with-infrastructure-resolver/appsettings.Development.json | Development-specific settings for the example |
docs/azure/snippets/customize-azure-with-infrastructure-resolver/Properties/launchSettings.json | Launch configuration for the example project |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Summary
Added a section to the Customize Azure resources article describing how to use an overridden InfrastructureResolver class to alter the Bicep generated for Azure resources. Includes snippets.
Fixes #3857
Internal previews