LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

pulumi-install

Install Pulumi project dependencies and plugins

TLDR

Install project dependencies and plugins
$ pulumi install
copy
Install without language dependencies
$ pulumi install --no-dependencies
copy
Install without plugins
$ pulumi install --no-plugins
copy
Reinstall all plugins even if they exist
$ pulumi install --reinstall
copy
Install with custom parallelism
$ pulumi install --parallel [8]
copy
Use language version tools to set up the runtime
$ pulumi install --use-language-version-tools
copy

SYNOPSIS

pulumi install [options]

DESCRIPTION

pulumi install installs packages and plugins required by your Pulumi program or policy pack. If your Pulumi.yaml file contains a 'packages' section, this command automatically installs SDKs for all declared packages. Run after cloning a project or updating dependencies.

PARAMETERS

--no-dependencies

Skip installing language dependencies.
--no-plugins
Skip installing plugins.
--reinstall
Reinstall plugins even if they already exist.
--parallel int
Max number of concurrent installs (default 4).
--use-language-version-tools
Use language version tools to setup and install the language runtime.

SEE ALSO

Copied to clipboard
Kai