mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-14 03:00:15 -04:00
* Adding check-legacy-links-format workflow * Adding test-link-rewrites workflow * Migrating links to new format * Updating docs-content-check-legacy-links-format hash * chore: update source * Update generated partials from Packer plugin SDK * Bump packer-plugin-sdk to get latest packer-sdc * Update website/content/docs/templates/hcl_templates/blocks/build/provisioner.mdx * Update Plugin SDK to fix shell-local regression --------- Co-authored-by: Kendall Strautman <kendallstrautman@gmail.com> Co-authored-by: Wilken Rivera <wilken@hashicorp.com> Co-authored-by: Kendall Strautman <36613477+kendallstrautman@users.noreply.github.com>
30 lines
887 B
Text
30 lines
887 B
Text
---
|
|
description: |
|
|
The "plugin" command groups subcommands for interacting with
|
|
Packer's plugin and the plugin catalog.
|
|
page_title: plugins Command
|
|
---
|
|
|
|
# `plugins`
|
|
|
|
The `plugins` command groups subcommands for interacting with Packers' plugins.
|
|
|
|
```shell-session
|
|
$ packer plugins -h
|
|
Usage: packer plugins <subcommand> [options] [args]
|
|
This command groups subcommands for interacting with Packer plugins.
|
|
|
|
Related but not under the "plugins" command :
|
|
|
|
- "packer init <path>" will install all plugins required by a config.
|
|
|
|
Subcommands:
|
|
install Install latest Packer plugin [matching version constraint]
|
|
installed List all installed Packer plugin binaries
|
|
remove Remove Packer plugins [matching a version]
|
|
required List plugins required by a config
|
|
```
|
|
|
|
## Related
|
|
|
|
- [`packer init`](/packer/docs/commands/init) will install all required plugins.
|