Skip to content

Address review feedback for Azure App Configuration documentation - #119

Merged
David Pine (IEvangelist) merged 4 commits into
fix-106from
copilot/sub-pr-108
Dec 5, 2025
Merged

Address review feedback for Azure App Configuration documentation#119
David Pine (IEvangelist) merged 4 commits into
fix-106from
copilot/sub-pr-108

Conversation

Copilot AI commented Dec 5, 2025

Copy link
Copy Markdown
Contributor

Addresses Zhiyuan Liang (@zhiyuanliang-ms) review feedback on the Azure App Configuration integration documentation.

Changes

  • Added configureOptions pattern section — New section explaining how to configure the Azure App Configuration provider using the Action<AzureAppConfigurationOptions> delegate, with example showing Select and ConfigureRefresh usage
  • Clarified data persistence behavior — Updated WithDataVolume and WithDataBindMount sections to explain that the emulator doesn't persist data by default
  • Improved cross-referencing — Updated "Use feature flags" section to link to the new configureOptions documentation

Example

builder.AddAzureAppConfiguration(
    "config",
    configureOptions: options =>
    {
        options.Select("MyApp:*");
        options.ConfigureRefresh(refresh =>
        {
            refresh.Register("MyApp:Sentinel", refreshAll: true)
                   .SetRefreshInterval(TimeSpan.FromSeconds(30));
        });
    });

This follows the same pattern as the non-Aspire Microsoft.Extensions.Configuration.AzureAppConfiguration package, but Aspire handles the connection automatically—no options.Connect call needed.


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 2 commits December 5, 2025 13:47
…, clarify data persistence

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

Copilot AI commented Dec 5, 2025

Copy link
Copy Markdown
Contributor Author

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/repos/CommunityToolkit/Aspire
    • Triggering command: /usr/local/bin/node node ./scripts/update-github-stats.js (http block)
  • https://api.github.com/repos/CommunityToolkit/Aspire/contributors
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/aspire.dev/aspire.dev/src/frontend/node_modules/.bin/astro build (http block)
  • https://api.github.com/repos/dotnet/aspire
    • Triggering command: /usr/local/bin/node node ./scripts/update-github-stats.js (http block)
  • https://api.github.com/repos/dotnet/aspire-samples
    • Triggering command: /usr/local/bin/node node ./scripts/update-github-stats.js (http block)
  • https://api.github.com/repos/dotnet/aspire-samples/contributors
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/aspire.dev/aspire.dev/src/frontend/node_modules/.bin/astro build (http block)
  • https://api.github.com/repos/dotnet/aspire/contributors
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/aspire.dev/aspire.dev/src/frontend/node_modules/.bin/astro build (http block)
  • https://api.github.com/repos/microsoft/aspire.dev
    • Triggering command: /usr/local/bin/node node ./scripts/update-github-stats.js (http block)
  • https://api.github.com/repos/microsoft/aspire.dev/contributors
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/aspire.dev/aspire.dev/src/frontend/node_modules/.bin/astro build (http block)
  • telemetry.astro.build
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/aspire.dev/aspire.dev/src/frontend/node_modules/.bin/astro build (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title [WIP] Fix update Azure App Configuration documentation to clarify connection methods Address review feedback for Azure App Configuration documentation Dec 5, 2025
@IEvangelist
David Pine (IEvangelist) marked this pull request as ready for review December 5, 2025 17:41
@IEvangelist
David Pine (IEvangelist) merged commit 54eeaf4 into fix-106 Dec 5, 2025
1 check passed
@IEvangelist
David Pine (IEvangelist) deleted the copilot/sub-pr-108 branch December 5, 2025 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants