LinuxCommandLibrary

pulumi

Define infrastructure on any cloud using familiar programming languages.

TLDR

Create a new project using a template

$ pulumi new
copy


Create a new stack using an isolated deployment target
$ pulumi stack init
copy


Configure variables (e.g. keys, regions, etc.) interactively
$ pulumi config
copy


Preview and deploy changes to a program and/or infrastructure
$ pulumi up
copy


Preview deployment changes without performing them (dry-run)
$ pulumi preview
copy


Destroy a program and its infrastructure
$ pulumi destroy
copy

Copied to clipboard