Is there an emulator for Azure App Configuration for local development

Samuel Alexander 31 Reputation points
2022-09-28T17:09:36.547+00:00

Is there an emulator for Azure App Configuration for local development to avoid round trips to Azure during development/debugging for connection strings and appSettings ?

If not, is there a standard approach to achieving this ?

Thanks

Azure App Configuration
Azure App Configuration
An Azure service that provides hosted, universal storage for Azure app configurations.
214 questions
0 comments No comments
{count} vote

1 answer

Sort by: Most helpful
  1. MuthuKumaranMurugaachari-MSFT 22,261 Reputation points
    2022-09-28T20:20:02.043+00:00

    @Samuel Alexander Thank you for reaching out to Microsoft Q&A. I answered this question in other thread and glad to see that you voted that question. If you have any questions, feel free to add a comment. I would be happy to assist.

    Answer from other thread:
    Currently there is no local emulator available and unfortunately it is not in our roadmap. Please use Azure/AppConfiguration repo to share feedback directly with our product team (will share feedback internally too).

    For local environment/debugging, you can look at File content profile: KVSet option to export data in the app configuration store to a file (GH #552). This would help in testing your app in the local environment. Based on your scenario, you can also import configuration file to App Configuration store using Azure CLI as part of your CI/CD pipeline (check Configuration as Code).

    I understand you want to reduce requests to Azure, and please review some of the steps in our Best Practices doc.

    1 person found this answer helpful.