This example demonstrates the usage of Pulumi to create globally-distributed applications with Azure Cosmos DB as the backend and pluggable infrastrustructure as the web tier.
The application shows several notable features:
- Easy global deployments - a config setting provides a list of all the regions to deploy and a single execution deploys across them all.
- Abstraction - the
CosmosApp
component - abstracts away all the common logic for a global app with Cosmos DB multi-region data distribution and Traffic Manager for routing the traffic. - Multi-model - an implementation example is currently provided for serverless functions and virtual machines.
The CosmosApp
defines a skeleton for the application. While not limiting the type of compute resources, it creates the multi-regional pieces of the infrastructure:
To deploy your infrastructure, follow the below steps.
$ pulumi stack init dev
You will be prompted to do this during deployment if you forget this step.
$ az login
```
$ dotnet publish app
```
$ pulumi config set azure:location westus
$ pulumi config set locations westus,westeurope
Run pulumi up
to preview and deploy changes:
$ pulumi up
Previewing changes:
+ azure-cs-cosmosapp-component-dev create
+ examples:azure:CosmosApp vms create
+ azure:network:VirtualNetwork vnet-westeurope create
+ azure:network:PublicIp pip-westeurope create
+ azure:trafficmanager:Profile tmvms create
+ azure:trafficmanager:Endpoint tmvmswesteurope create
+ azure:cosmosdb:Account cosmos-vms
...
Three endpoints are now available. For example,
$ pulumi stack output VmssEndpoint
http://vmssrgcc15ea50.trafficmanager.net/cosmos
$ curl "$(pulumi stack output VmssEndpoint)"
Document 'cosmos' not found
Go to the Azure portal and add a document with the ID "cosmos" to receive a non-empty response.
Once you've finished experimenting, tear down your stack's resources by destroying and removing it:
$ pulumi destroy --yes
$ pulumi stack rm --yes