mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 09:51:08 -05:00
This adds the new `required_plugins` block to be nested under the packer block.
Example:
```hcl
packer {
required_plugins {
aws = {
version = ">= 2.7.0"
source = "azr/aws"
}
azure = ">= 2.7.0"
}
}
```
For example on darwin_amd64 Packer will install those under :
* "${PACKER_HOME_DIR}/plugin/github.com/azr/amazon/packer-plugin-amazon_2.7.0_x5.0_darwin_amd64"
* "${PACKER_HOME_DIR}/plugin/github.com/hashicorp/azure/packer-plugin-azure_2.7.0_x5.0_darwin_amd64_x5"
+ docs
+ tests
|
||
|---|---|---|
| .. | ||
| version | ||
| artifact.go | ||
| artifact_test.go | ||
| builder.go | ||
| builder_test.go | ||
| config.go | ||
| config.hcl2spec.go | ||
| config_test.go | ||
| ssh.go | ||
| step_configure_networking.go | ||
| step_create_instance.go | ||
| step_create_security_group.go | ||
| step_create_template.go | ||
| step_detach_iso.go | ||
| step_keypair.go | ||
| step_prepare_config.go | ||
| step_shutdown_instance.go | ||