pulumi

man in grey sweater holding yellow sticky note

Using Pulumi to spin up an S3 bucket

Reading Time: 4 minutes Pulumi is an infrastructure as a Code tool that you can use to spin up any infrastructure-related components in the cloud or on-prem. In this blog, we will go through the steps involved in creating AWS service components using Pulumi. Pre-requisites AWS Access KeyAWS Secret KeyPulumi client Let’s create a new directory for our workloads. mkdir knolduscd knoldus Create a Pulumi stack pulumi new aws-yaml Continue Reading

Computer code on screens

How to Deploy a Nginx Web server using Pulumi

Reading Time: 3 minutes Good day, Readers! In this blog, we’ll look at how to deploy a Nginx Web server with Pulumi. Before you begin using pulumi, you should be familiar with Kubernetes workloads. What is Pulumi? Pulumi is an open-source infrastructure as code tool that simplifies the provisioning and management of cloud resources by utilising the most popular programming languages. Pulumi, which was founded in 2017, has fundamentally Continue Reading

black and gray laptop computer turned on doing computer codes

How to create AWS ECS using Pulumi

Reading Time: 3 minutes Hello Readers! In this blog we will see how we can create AWS ECS using pulumi. Pulumi is an open source infrastructure as code tool. We can create, deploy, and manage cloud infrastructure. Pulumi can be use with multi-programming languages, here I will use python. Install Pulumi: Run the following command for installing pulumi: $ curl -fsSL https://get.pulumi.com | sh Check the version using following Continue Reading