Managing your cloud infrastructure with Pulumi
In this section, you will learn how to manage your cloud infrastructure using Pulumi. With cloud infrastructure, it is important to be consistent. One way to achieve this is to remove the human element, which is prone to error, and automate as much as you can. An important aspect of the cloud that can be readily automated is infrastructure provisioning tasks. And that’s where Pulumi comes in.
With Pulumi, you can code Infrastructure as Code (IaC) solutions. Code and configuration files are used to manage and provision the infrastructure that your software will run on.
Pulumi projects can be written in various programming languages such as Python, VB.NET, F#, and C#. We are interested in using C# for our Pulumi projects. You can use Pulumi to do the following:
- Specify your infrastructure.
- Automate how cloud resources are created, updated, and deleted.
- Use IDEs and code editors such as Visual Studio and Visual...