HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pulumi plugin — Manage language and resource provider plugins manually. Other commands manage these automatically. M

Submitted by: @import:tldr-pages··
0
Viewed 0 times
resourcecommandlanguageandproviderpulumi pluginclimanage

Problem

How to use the pulumi plugin command: Manage language and resource provider plugins manually. Other commands manage these automatically. More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_plugin/>.

Solution

pulumi plugin — Manage language and resource provider plugins manually. Other commands manage these automatically. More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_plugin/>.

List all plugins on the downloaded cache:
pulumi plugin ls


List plugins being used by the current project in JSON format:
pulumi plugin {{[-p|--project]}} {{[-j|--json]}}


Install a plugin kind (e.g resource) with the latest version or a specific one:
pulumi plugin install {{kind}} {{name}} {{version}}


Remove a plugin kind (e.g. resource) and interactively pick a version or provide a specific one:
pulumi plugin rm {{kind}} {{name}} {{version}}


Display help:
pulumi plugin {{[-h|--help]}}

Code Snippets

List all plugins on the downloaded cache

pulumi plugin ls

List plugins being used by the current project in JSON format

pulumi plugin {{[-p|--project]}} {{[-j|--json]}}

Install a plugin kind (e.g resource) with the latest version or a specific one

pulumi plugin install {{kind}} {{name}} {{version}}

Remove a plugin kind (e.g. resource) and interactively pick a version or provide a specific one

pulumi plugin rm {{kind}} {{name}} {{version}}

Display help

pulumi plugin {{[-h|--help]}}

Context

tldr-pages: common/pulumi plugin

Revisions (0)

No revisions yet.