2013-06-26 20:37:46 -04:00
|
|
|
package vagrant
|
|
|
|
|
|
|
|
import (
|
2013-06-26 21:55:11 -04:00
|
|
|
"fmt"
|
2013-08-15 15:09:22 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2013-06-26 20:37:46 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-06-26 21:55:11 -04:00
|
|
|
"io/ioutil"
|
2013-07-05 13:41:54 -04:00
|
|
|
"log"
|
2013-06-26 21:55:11 -04:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2013-06-26 20:37:46 -04:00
|
|
|
)
|
|
|
|
|
2013-06-26 21:55:11 -04:00
|
|
|
type AWSBoxConfig struct {
|
2013-08-15 15:09:22 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2013-06-27 13:51:13 -04:00
|
|
|
OutputPath string `mapstructure:"output"`
|
2013-06-27 10:40:33 -04:00
|
|
|
VagrantfileTemplate string `mapstructure:"vagrantfile_template"`
|
2013-08-15 15:19:41 -04:00
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
tpl *packer.ConfigTemplate
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type AWSVagrantfileTemplate struct {
|
|
|
|
Images map[string]string
|
|
|
|
}
|
|
|
|
|
2013-06-26 20:37:46 -04:00
|
|
|
type AWSBoxPostProcessor struct {
|
2013-06-26 21:55:11 -04:00
|
|
|
config AWSBoxConfig
|
2013-06-26 20:37:46 -04:00
|
|
|
}
|
|
|
|
|
2013-07-01 17:59:23 -04:00
|
|
|
func (p *AWSBoxPostProcessor) Configure(raws ...interface{}) error {
|
2013-08-15 15:19:41 -04:00
|
|
|
md, err := common.DecodeConfig(&p.config, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
p.config.tpl, err = packer.NewConfigTemplate()
|
2013-08-15 15:19:41 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.config.tpl.UserVars = p.config.PackerUserVars
|
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
errs := common.CheckUnusedConfig(md)
|
|
|
|
|
|
|
|
validates := map[string]*string{
|
2013-08-18 22:37:04 -04:00
|
|
|
"output": &p.config.OutputPath,
|
2013-08-15 15:19:41 -04:00
|
|
|
"vagrantfile_template": &p.config.VagrantfileTemplate,
|
|
|
|
}
|
|
|
|
|
|
|
|
for n, ptr := range validates {
|
|
|
|
if err := p.config.tpl.Validate(*ptr); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error parsing %s: %s", n, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
2013-06-26 20:37:46 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
func (p *AWSBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
|
2013-06-26 21:55:11 -04:00
|
|
|
// Determine the regions...
|
|
|
|
tplData := &AWSVagrantfileTemplate{
|
|
|
|
Images: make(map[string]string),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, regions := range strings.Split(artifact.Id(), ",") {
|
|
|
|
parts := strings.Split(regions, ":")
|
|
|
|
if len(parts) != 2 {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, fmt.Errorf("Poorly formatted artifact ID: %s", artifact.Id())
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tplData.Images[parts[0]] = parts[1]
|
|
|
|
}
|
|
|
|
|
2013-06-27 13:51:13 -04:00
|
|
|
// Compile the output path
|
2013-08-18 22:37:04 -04:00
|
|
|
outputPath, err := p.config.tpl.Process(p.config.OutputPath, &OutputPathTemplate{
|
|
|
|
ArtifactId: artifact.Id(),
|
|
|
|
BuildName: p.config.PackerBuildName,
|
|
|
|
Provider: "aws",
|
|
|
|
})
|
2013-06-27 13:51:13 -04:00
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 13:51:13 -04:00
|
|
|
}
|
|
|
|
|
2013-06-26 21:55:11 -04:00
|
|
|
// Create a temporary directory for us to build the contents of the box in
|
|
|
|
dir, err := ioutil.TempDir("", "packer")
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
// Create the Vagrantfile from the template
|
|
|
|
vf, err := os.Create(filepath.Join(dir, "Vagrantfile"))
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
defer vf.Close()
|
|
|
|
|
2013-06-27 10:40:33 -04:00
|
|
|
vagrantfileContents := defaultAWSVagrantfile
|
|
|
|
if p.config.VagrantfileTemplate != "" {
|
2013-07-05 13:41:54 -04:00
|
|
|
log.Printf("Using vagrantfile template: %s", p.config.VagrantfileTemplate)
|
2013-06-27 10:40:33 -04:00
|
|
|
f, err := os.Open(p.config.VagrantfileTemplate)
|
|
|
|
if err != nil {
|
2013-07-05 14:00:18 -04:00
|
|
|
err = fmt.Errorf("error opening vagrantfile template: %s", err)
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:40:33 -04:00
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
2013-07-05 14:00:18 -04:00
|
|
|
err = fmt.Errorf("error reading vagrantfile template: %s", err)
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:40:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
vagrantfileContents = string(contents)
|
|
|
|
}
|
|
|
|
|
2013-08-15 15:19:41 -04:00
|
|
|
vagrantfileContents, err = p.config.tpl.Process(vagrantfileContents, tplData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, fmt.Errorf("Error writing Vagrantfile: %s", err)
|
|
|
|
}
|
|
|
|
vf.Write([]byte(vagrantfileContents))
|
2013-06-26 21:55:11 -04:00
|
|
|
vf.Close()
|
|
|
|
|
|
|
|
// Create the metadata
|
|
|
|
metadata := map[string]string{"provider": "aws"}
|
|
|
|
if err := WriteMetadata(dir, metadata); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compress the directory to the given output path
|
2013-08-20 01:38:32 -04:00
|
|
|
if err := DirToBox(outputPath, dir, ui); err != nil {
|
2013-07-05 14:11:54 -04:00
|
|
|
err = fmt.Errorf("error creating box: %s", err)
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
return NewArtifact("aws", outputPath), true, nil
|
2013-06-26 20:37:46 -04:00
|
|
|
}
|
2013-06-26 21:55:11 -04:00
|
|
|
|
2013-06-27 10:40:33 -04:00
|
|
|
var defaultAWSVagrantfile = `
|
2013-06-26 21:55:11 -04:00
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
config.vm.provider "aws" do |aws|
|
|
|
|
{{ range $region, $ami := .Images }}
|
|
|
|
aws.region_config "{{ $region }}", ami: "{{ $ami }}"
|
|
|
|
{{ end }}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
`
|