Azure - Pulumi Infrastructure Part 1
Overview - Prepping Django
This is the first blog post of the Pulumi infrastructure series. This series will cover me building out the infrastructure to host the Django application I created. In this part we will prepare the Django web app to be deployed. We will need to get our Django settings configured, the Docker file created, bash commands created, and our requirements file created.
Key Vault
The first thing I need to do is create a key vault to store my secrets. I am going to use two key vaults because I want one to have some of my secrets pre-loaded and the others I want to load when the Pulumi deployments runs. I am going to name them “cybauer-capchta-email” and “cybauer-vault”. Lets c…