2013-06-26 20:37:46 -04:00
|
|
|
package vagrant
|
|
|
|
|
|
|
|
import (
|
2013-06-26 21:55:11 -04:00
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
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"
|
|
|
|
"text/template"
|
2013-06-26 20:37:46 -04:00
|
|
|
)
|
|
|
|
|
2013-06-26 21:55:11 -04:00
|
|
|
type AWSBoxConfig struct {
|
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-07-01 18:07:09 -04:00
|
|
|
|
|
|
|
PackerBuildName string `mapstructure:"packer_build_name"`
|
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 {
|
|
|
|
for _, raw := range raws {
|
|
|
|
err := mapstructure.Decode(raw, &p.config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-06-26 21:55:11 -04:00
|
|
|
}
|
|
|
|
|
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-07-01 18:07:09 -04:00
|
|
|
outputPath, err := ProcessOutputPath(p.config.OutputPath,
|
|
|
|
p.config.PackerBuildName, "aws", artifact)
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
t := template.Must(template.New("vagrantfile").Parse(vagrantfileContents))
|
2013-06-26 21:55:11 -04:00
|
|
|
t.Execute(vf, tplData)
|
|
|
|
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-06-27 13:51:13 -04:00
|
|
|
if err := DirToBox(outputPath, dir); 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
|
|
|
|
`
|