From ba8855b0515c34ca66dfe0751dad5d76287e84cf Mon Sep 17 00:00:00 2001 From: Daniel Guerrero Date: Mon, 14 Jul 2025 21:59:44 -0300 Subject: [PATCH] pulumi-plugin: add page (#17200) Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages/common/pulumi-plugin.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/common/pulumi-plugin.md diff --git a/pages/common/pulumi-plugin.md b/pages/common/pulumi-plugin.md new file mode 100644 index 0000000000..3668506b39 --- /dev/null +++ b/pages/common/pulumi-plugin.md @@ -0,0 +1,25 @@ +# pulumi plugin + +> Manage language and resource provider plugins manually. +> Other commands manage these automatically. +> More information: . + +- 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]}}`