Technical requirements
Similar to the previous chapter, an Azure subscription, the Azure CLI, Azure Developer CLI, and Docker Desktop are required.
The code for this chapter can be found in the following GitHub repository: https://github.com/PacktPublishing/Pragmatic-Microservices-with-CSharp-and-Azure.
In the ch07
folder, you’ll see these projects with the final result of this chapter:
ConfigurationPrototype
– This is a new project that shows some concepts with configuration before implementing this with the games API and the bot service.Codebreaker.InitializeAppConfig
– This is a new project to initialize values with Azure App Configuration.Codebreaker.AppHost
– The app model defined with this project is enhanced to include theConfigurationPrototype
andCodebreaker.InitializeAppConfig
projects and add App Configuration and Azure Key Vault resources to the app model.Codebreaker.GameAPIs
– The games API project we used...