mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-05 06:51:29 -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
8 lines
155 B
Modula-2
8 lines
155 B
Modula-2
module github.com/digitalocean/go-libvirt
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.6.1
|
|
golang.org/x/tools v0.0.0-20200711155855-7342f9734a7d
|
|
)
|