2af40c762b
* sets `packer_build_name` and `packer_builder_type` variables for builder provisioners and post-processors in HCL2 * allows to use the new `${source.type}` and `${source.name}` variables in HCL2 * fixes #8932 Note that the common.PackerConfig is used everywhere and was not set for HCL2, this had some implications: For #8923 you can see the issue here:dde74232f2/builder/lxd/config.go (L61-L63)
More random examples of where this could cause an issue :0785c2f6fc/provisioner/ansible-local/provisioner.go (L380-L381)
b4efd13a4d/builder/amazon/ebs/builder.go (L232-L236)
* [All references to PackerConfig.PackerBuildName](https://sourcegraph.com/github.com/hashicorp/packer@ff6a039d5bb45e34ff761d9c52e8b98972288447/-/blob/common/packer_config.go#L7:2&tab=references) * [All references to PackerConfig.PackerBuilderType](https://sourcegraph.com/github.com/hashicorp/packer@ff6a039d5bb45e34ff761d9c52e8b98972288447/-/blob/common/packer_config.go#L8:2&tab=references)
49 lines
1.0 KiB
Go
49 lines
1.0 KiB
Go
package manifest
|
|
|
|
import "fmt"
|
|
|
|
const BuilderId = "packer.post-processor.manifest"
|
|
|
|
type ArtifactFile struct {
|
|
Name string `json:"name"`
|
|
Size int64 `json:"size"`
|
|
}
|
|
|
|
type Artifact struct {
|
|
BuildName string `json:"name"`
|
|
BuilderType string `json:"builder_type"`
|
|
BuildTime int64 `json:"build_time,omitempty"`
|
|
ArtifactFiles []ArtifactFile `json:"files"`
|
|
ArtifactId string `json:"artifact_id"`
|
|
PackerRunUUID string `json:"packer_run_uuid"`
|
|
CustomData map[string]string `json:"custom_data"`
|
|
}
|
|
|
|
func (a *Artifact) BuilderId() string {
|
|
return BuilderId
|
|
}
|
|
|
|
func (a *Artifact) Files() []string {
|
|
var files []string
|
|
for _, af := range a.ArtifactFiles {
|
|
files = append(files, af.Name)
|
|
}
|
|
return files
|
|
}
|
|
|
|
func (a *Artifact) Id() string {
|
|
return a.ArtifactId
|
|
}
|
|
|
|
func (a *Artifact) String() string {
|
|
return fmt.Sprintf("%s-%s", a.BuildName, a.ArtifactId)
|
|
}
|
|
|
|
func (a *Artifact) State(name string) interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (a *Artifact) Destroy() error {
|
|
return nil
|
|
}
|