├── Chapter01 ├── maps │ ├── Cloud Service Models.jpg │ ├── Master domain.jpg │ └── readme.md └── readme.md ├── Chapter02 ├── code │ ├── PacktOrchestrationDemo.sln │ ├── PacktOrchestrationDemo │ │ ├── Orchestration.cs │ │ ├── PacktOrchestrationDemo.csproj │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ ├── serviceDependencies.local.json │ │ │ └── serviceDependencies.local.json.user │ │ ├── host.json │ │ ├── local.settings.json │ │ └── samplepayload.json │ └── readme.md ├── diagrams │ ├── readme.md │ └── sample-refeference-architecture.vsdx ├── maps │ ├── Azure Solution Architect Map.pdf │ ├── Containers.jpg │ ├── Dapr.jpg │ ├── EDA.jpg │ └── readme.md └── readme.md ├── Chapter03 ├── diagrams │ ├── active-active-dr-compliant-api-offering.vsdx │ ├── aks-microservices-ref-architecture.vsdx │ └── readme.md ├── maps │ ├── AKS Architecture.pdf │ ├── Azure Infrastructure Architect.pdf │ └── readme.md └── readme.md ├── Chapter04 ├── IaC │ ├── ARM │ │ ├── app-service-plan.json │ │ ├── app-service.json │ │ ├── master.json │ │ ├── master.parameters.json │ │ └── readme.md │ ├── Bicep │ │ ├── packt.bicep │ │ └── readme.md │ └── terraform │ │ └── main.tf ├── diagrams │ ├── iac-diagrams.vsdx │ └── readme.md └── readme.md ├── Chapter05 ├── Code │ ├── ChangeFeed │ │ ├── changefeed.sln │ │ ├── changefeed │ │ │ ├── Program.cs │ │ │ └── changefeed.csproj │ │ └── readme.md │ ├── IaC │ │ ├── chapter05.bicep │ │ └── chapter05.json │ ├── Models │ │ ├── Models.csproj │ │ ├── Order.cs │ │ ├── OrderEvent.cs │ │ └── Product.cs │ ├── OrderQueryService │ │ ├── Components │ │ │ └── readme.md │ │ ├── Controllers │ │ │ └── OrderQueryController.cs │ │ ├── Dockerfile │ │ ├── OrderQueryService.csproj │ │ ├── OrderQueryService.csproj.user │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── OrderService │ │ ├── Components │ │ │ ├── packteh.yaml │ │ │ └── packtsb.yaml │ │ ├── Controllers │ │ │ └── OrderProcessingController.cs │ │ ├── Dockerfile │ │ ├── OrderProcessingService.csproj │ │ ├── OrderProcessingService.csproj.user │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Packt-Microservices-Dapr.sln │ ├── ShippingService │ │ ├── Components │ │ │ ├── packteh.yaml │ │ │ └── packtsb.yaml │ │ ├── Controllers │ │ │ └── ShippingController.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ShippingService.csproj │ │ ├── ShippingService.csproj.user │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── readme.md ├── diagrams │ ├── diagrams.vsdx │ ├── microservices-with-dapr.png │ ├── readme.md │ ├── revisited-aci-flow.png │ └── revisited-aci-with-eda.png └── maps │ ├── Azure Application Architect - Cloud Design Paterns.pdf │ ├── Azure Application Architecture.pdf │ └── readme.md ├── Chapter06 ├── code │ ├── DeviceSimulator.sln │ ├── DeviceSimulatorConsole │ │ ├── DeviceSimulatorConsole.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── appsettings.json │ ├── devicesimulator.zip │ ├── readme.md │ └── sa-query.txt └── maps │ ├── Data Architecture.pdf │ ├── data architecture.png │ └── readme.md ├── Chapter07 ├── diagrams │ └── diagrams.vsdx ├── maps │ └── Security Architecture.pdf └── readme.md ├── LICENSE └── README.md /Chapter01/maps/Cloud Service Models.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter01/maps/Cloud Service Models.jpg -------------------------------------------------------------------------------- /Chapter01/maps/Master domain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter01/maps/Master domain.jpg -------------------------------------------------------------------------------- /Chapter01/maps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter01/maps/readme.md -------------------------------------------------------------------------------- /Chapter01/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter01/readme.md -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo.sln -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/Orchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/Orchestration.cs -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/PacktOrchestrationDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/PacktOrchestrationDemo.csproj -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/Properties/serviceDependencies.local.json.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/Properties/serviceDependencies.local.json.user -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/host.json -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/local.settings.json -------------------------------------------------------------------------------- /Chapter02/code/PacktOrchestrationDemo/samplepayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/PacktOrchestrationDemo/samplepayload.json -------------------------------------------------------------------------------- /Chapter02/code/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/code/readme.md -------------------------------------------------------------------------------- /Chapter02/diagrams/readme.md: -------------------------------------------------------------------------------- 1 | Diagrams of Chapter 02 - Solution Architecture 2 | -------------------------------------------------------------------------------- /Chapter02/diagrams/sample-refeference-architecture.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/diagrams/sample-refeference-architecture.vsdx -------------------------------------------------------------------------------- /Chapter02/maps/Azure Solution Architect Map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/maps/Azure Solution Architect Map.pdf -------------------------------------------------------------------------------- /Chapter02/maps/Containers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/maps/Containers.jpg -------------------------------------------------------------------------------- /Chapter02/maps/Dapr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/maps/Dapr.jpg -------------------------------------------------------------------------------- /Chapter02/maps/EDA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/maps/EDA.jpg -------------------------------------------------------------------------------- /Chapter02/maps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/maps/readme.md -------------------------------------------------------------------------------- /Chapter02/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter02/readme.md -------------------------------------------------------------------------------- /Chapter03/diagrams/active-active-dr-compliant-api-offering.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter03/diagrams/active-active-dr-compliant-api-offering.vsdx -------------------------------------------------------------------------------- /Chapter03/diagrams/aks-microservices-ref-architecture.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter03/diagrams/aks-microservices-ref-architecture.vsdx -------------------------------------------------------------------------------- /Chapter03/diagrams/readme.md: -------------------------------------------------------------------------------- 1 | This folder contains Chapter03's diagrams 2 | -------------------------------------------------------------------------------- /Chapter03/maps/AKS Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter03/maps/AKS Architecture.pdf -------------------------------------------------------------------------------- /Chapter03/maps/Azure Infrastructure Architect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter03/maps/Azure Infrastructure Architect.pdf -------------------------------------------------------------------------------- /Chapter03/maps/readme.md: -------------------------------------------------------------------------------- 1 | This folder contains Chapter03's maps 2 | -------------------------------------------------------------------------------- /Chapter03/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter03/readme.md -------------------------------------------------------------------------------- /Chapter04/IaC/ARM/app-service-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/IaC/ARM/app-service-plan.json -------------------------------------------------------------------------------- /Chapter04/IaC/ARM/app-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/IaC/ARM/app-service.json -------------------------------------------------------------------------------- /Chapter04/IaC/ARM/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/IaC/ARM/master.json -------------------------------------------------------------------------------- /Chapter04/IaC/ARM/master.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/IaC/ARM/master.parameters.json -------------------------------------------------------------------------------- /Chapter04/IaC/ARM/readme.md: -------------------------------------------------------------------------------- 1 | Sample deployment with ARM Linked Templates 2 | -------------------------------------------------------------------------------- /Chapter04/IaC/Bicep/packt.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/IaC/Bicep/packt.bicep -------------------------------------------------------------------------------- /Chapter04/IaC/Bicep/readme.md: -------------------------------------------------------------------------------- 1 | Sample deployment with Azure Bicep 2 | -------------------------------------------------------------------------------- /Chapter04/IaC/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/IaC/terraform/main.tf -------------------------------------------------------------------------------- /Chapter04/diagrams/iac-diagrams.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter04/diagrams/iac-diagrams.vsdx -------------------------------------------------------------------------------- /Chapter04/diagrams/readme.md: -------------------------------------------------------------------------------- 1 | Diagrams of Chapter04 - Infrastructure Deployment 2 | -------------------------------------------------------------------------------- /Chapter04/readme.md: -------------------------------------------------------------------------------- 1 | Code samples and diagrams of Chapter04 - Infrastructure Deployment 2 | -------------------------------------------------------------------------------- /Chapter05/Code/ChangeFeed/changefeed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ChangeFeed/changefeed.sln -------------------------------------------------------------------------------- /Chapter05/Code/ChangeFeed/changefeed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ChangeFeed/changefeed/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/ChangeFeed/changefeed/changefeed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ChangeFeed/changefeed/changefeed.csproj -------------------------------------------------------------------------------- /Chapter05/Code/ChangeFeed/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ChangeFeed/readme.md -------------------------------------------------------------------------------- /Chapter05/Code/IaC/chapter05.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/IaC/chapter05.bicep -------------------------------------------------------------------------------- /Chapter05/Code/IaC/chapter05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/IaC/chapter05.json -------------------------------------------------------------------------------- /Chapter05/Code/Models/Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/Models/Models.csproj -------------------------------------------------------------------------------- /Chapter05/Code/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/Models/Order.cs -------------------------------------------------------------------------------- /Chapter05/Code/Models/OrderEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/Models/OrderEvent.cs -------------------------------------------------------------------------------- /Chapter05/Code/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/Models/Product.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/Components/readme.md: -------------------------------------------------------------------------------- 1 | Empty folder with no component 2 | -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/Controllers/OrderQueryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/Controllers/OrderQueryController.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/Dockerfile -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/OrderQueryService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/OrderQueryService.csproj -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/OrderQueryService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/OrderQueryService.csproj.user -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/Startup.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter05/Code/OrderQueryService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderQueryService/appsettings.json -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Components/packteh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Components/packteh.yaml -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Components/packtsb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Components/packtsb.yaml -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Controllers/OrderProcessingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Controllers/OrderProcessingController.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Dockerfile -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/OrderProcessingService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/OrderProcessingService.csproj -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/OrderProcessingService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/OrderProcessingService.csproj.user -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/Startup.cs -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter05/Code/OrderService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/OrderService/appsettings.json -------------------------------------------------------------------------------- /Chapter05/Code/Packt-Microservices-Dapr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/Packt-Microservices-Dapr.sln -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Components/packteh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Components/packteh.yaml -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Components/packtsb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Components/packtsb.yaml -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Controllers/ShippingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Controllers/ShippingController.cs -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Dockerfile -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/ShippingService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/ShippingService.csproj -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/ShippingService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/ShippingService.csproj.user -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/Startup.cs -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter05/Code/ShippingService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/ShippingService/appsettings.json -------------------------------------------------------------------------------- /Chapter05/Code/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/Code/readme.md -------------------------------------------------------------------------------- /Chapter05/diagrams/diagrams.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/diagrams/diagrams.vsdx -------------------------------------------------------------------------------- /Chapter05/diagrams/microservices-with-dapr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/diagrams/microservices-with-dapr.png -------------------------------------------------------------------------------- /Chapter05/diagrams/readme.md: -------------------------------------------------------------------------------- 1 | Diagrams of Chapter 5 2 | -------------------------------------------------------------------------------- /Chapter05/diagrams/revisited-aci-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/diagrams/revisited-aci-flow.png -------------------------------------------------------------------------------- /Chapter05/diagrams/revisited-aci-with-eda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/diagrams/revisited-aci-with-eda.png -------------------------------------------------------------------------------- /Chapter05/maps/Azure Application Architect - Cloud Design Paterns.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/maps/Azure Application Architect - Cloud Design Paterns.pdf -------------------------------------------------------------------------------- /Chapter05/maps/Azure Application Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter05/maps/Azure Application Architecture.pdf -------------------------------------------------------------------------------- /Chapter05/maps/readme.md: -------------------------------------------------------------------------------- 1 | Maps of Chapter05 2 | -------------------------------------------------------------------------------- /Chapter06/code/DeviceSimulator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/code/DeviceSimulator.sln -------------------------------------------------------------------------------- /Chapter06/code/DeviceSimulatorConsole/DeviceSimulatorConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/code/DeviceSimulatorConsole/DeviceSimulatorConsole.csproj -------------------------------------------------------------------------------- /Chapter06/code/DeviceSimulatorConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/code/DeviceSimulatorConsole/Program.cs -------------------------------------------------------------------------------- /Chapter06/code/DeviceSimulatorConsole/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/code/DeviceSimulatorConsole/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter06/code/DeviceSimulatorConsole/appsettings.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "EventHubCs": "" 4 | } -------------------------------------------------------------------------------- /Chapter06/code/devicesimulator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/code/devicesimulator.zip -------------------------------------------------------------------------------- /Chapter06/code/readme.md: -------------------------------------------------------------------------------- 1 | This code is provided for illustration purposes only 2 | -------------------------------------------------------------------------------- /Chapter06/code/sa-query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/code/sa-query.txt -------------------------------------------------------------------------------- /Chapter06/maps/Data Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/maps/Data Architecture.pdf -------------------------------------------------------------------------------- /Chapter06/maps/data architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter06/maps/data architecture.png -------------------------------------------------------------------------------- /Chapter06/maps/readme.md: -------------------------------------------------------------------------------- 1 | Maps of Chapter06 2 | -------------------------------------------------------------------------------- /Chapter07/diagrams/diagrams.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter07/diagrams/diagrams.vsdx -------------------------------------------------------------------------------- /Chapter07/maps/Security Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/Chapter07/maps/Security Architecture.pdf -------------------------------------------------------------------------------- /Chapter07/readme.md: -------------------------------------------------------------------------------- 1 | Files of Chapter07 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook/HEAD/README.md --------------------------------------------------------------------------------