pulumi-up

Deploy infrastructure changes

TLDR

Deploy stack
$ pulumi up
Deploy with auto-approval
$ pulumi up --yes
Deploy specific stack
$ pulumi up -s [stack]
Deploy with preview
$ pulumi up --diff
Deploy specific targets
$ pulumi up --target [urn]

SYNOPSIS

pulumi up [options]

DESCRIPTION

pulumi up creates or updates infrastructure. Compares desired state with current infrastructure and applies necessary changes. The primary command for deploying Pulumi programs.

PARAMETERS

-s, --stack name

Target stack.
-y, --yes
Skip confirmation.
--diff
Show detailed diff.
--target urn
Update specific resources.
--refresh
Refresh before update.
-p, --parallel n
Parallelism level.
--skip-preview
Skip preview step.
--replace urn
Force replacement of resources.
-f, --skip-preview
Skip preview.

INSTALL

sudo pacman -S pulumi
sudo apk add pulumi
brew install pulumi
nix profile install nixpkgs#pulumi

SEE ALSO

pulumi(1), pulumi-preview(1), pulumi-destroy(1)