Skip to content

Latest commit

 

History

History

Pulumi:

What is Pulumi?

* Pulumi is multilanguage infrastructure as code tool. So far, it helps engineers to provision Infra services on Public Cloud like AWS, Azure, GCP.

* It is open source.

It supports the language runtimes are currently supported,
a) TypeScript
b) c,c++, Java
c) Python, Go, .Net

# Curren pulumi version is: v3.197.0

Here are the most common commands in the CLI that will be using are as follows:

pulumi new: creates a new project using a template
pulumi stack: manage your stacks (at least one is required to perform an update)
pulumi config: configure variables such as keys, regions, and so on
pulumi up: preview and deploy changes to your program and/or infrastructure
pulumi preview: preview your changes explicitly before deploying
pulumi destroy: destroy your program and its infrastructure when you’re done
pulumi stack rm <stack name>   //Post resource deleted, if you want to delete stack as well.

More Commands