129 lines
2.9 KiB
Go
Raw Normal View History

2016-06-29 04:35:41 +02:00
package profitbricks
import (
"errors"
2018-01-22 17:21:10 -08:00
"os"
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/helper/config"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/template/interpolate"
2016-06-29 04:35:41 +02:00
"github.com/mitchellh/mapstructure"
)
type Config struct {
common.PackerConfig `mapstructure:",squash"`
Comm communicator.Config `mapstructure:",squash"`
2016-07-07 10:28:46 +02:00
PBUsername string `mapstructure:"username"`
PBPassword string `mapstructure:"password"`
PBUrl string `mapstructure:"url"`
2016-07-07 10:28:46 +02:00
2016-11-16 00:17:30 +01:00
Region string `mapstructure:"location"`
Image string `mapstructure:"image"`
SSHKey string
SnapshotName string `mapstructure:"snapshot_name"`
DiskSize int `mapstructure:"disk_size"`
DiskType string `mapstructure:"disk_type"`
Cores int `mapstructure:"cores"`
Ram int `mapstructure:"ram"`
Retries int `mapstructure:"retries"`
CommConfig communicator.Config `mapstructure:",squash"`
ctx interpolate.Context
2016-06-29 04:35:41 +02:00
}
func NewConfig(raws ...interface{}) (*Config, []string, error) {
var c Config
var md mapstructure.Metadata
err := config.Decode(&c, &config.DecodeOpts{
Metadata: &md,
Interpolate: true,
InterpolateContext: &c.ctx,
InterpolateFilter: &interpolate.RenderFilter{
Exclude: []string{
"run_command",
},
},
}, raws...)
if err != nil {
return nil, nil, err
}
var errs *packer.MultiError
2018-08-23 16:35:07 +02:00
if c.Comm.SSHPassword == "" && c.Comm.SSHPrivateKeyFile == "" {
2016-11-16 00:17:30 +01:00
errs = packer.MultiErrorAppend(
errs, errors.New("Either ssh private key path or ssh password must be set."))
}
2016-06-29 04:35:41 +02:00
2016-07-07 10:28:46 +02:00
if c.SnapshotName == "" {
def, err := interpolate.Render("packer-{{timestamp}}", nil)
if err != nil {
panic(err)
}
// Default to packer-{{ unix timestamp (utc) }}
c.SnapshotName = def
}
if c.PBUsername == "" {
c.PBUsername = os.Getenv("PROFITBRICKS_USERNAME")
2016-06-29 04:35:41 +02:00
}
2016-07-07 10:28:46 +02:00
if c.PBPassword == "" {
c.PBPassword = os.Getenv("PROFITBRICKS_PASSWORD")
2016-06-29 04:35:41 +02:00
}
if c.PBUrl == "" {
c.PBUrl = "https://api.profitbricks.com/cloudapi/v4"
2016-06-29 04:35:41 +02:00
}
if c.Cores == 0 {
c.Cores = 4
}
if c.Ram == 0 {
c.Ram = 2048
}
if c.DiskSize == 0 {
c.DiskSize = 50
}
if c.Region == "" {
c.Region = "us/las"
}
if c.DiskType == "" {
c.DiskType = "HDD"
}
if es := c.Comm.Prepare(&c.ctx); len(es) > 0 {
errs = packer.MultiErrorAppend(errs, es...)
}
2016-11-16 00:17:30 +01:00
if c.Image == "" {
errs = packer.MultiErrorAppend(
errs, errors.New("ProfitBricks 'image' is required"))
}
2016-06-29 04:35:41 +02:00
if c.PBUsername == "" {
errs = packer.MultiErrorAppend(
errs, errors.New("ProfitBricks username is required"))
}
if c.PBPassword == "" {
errs = packer.MultiErrorAppend(
errs, errors.New("ProfitBricks password is required"))
2016-06-29 04:35:41 +02:00
}
if errs != nil && len(errs.Errors) > 0 {
return nil, nil, errs
}
packer.LogSecretFilter.Set(c.PBUsername)
2016-06-29 04:35:41 +02:00
return &c, nil, nil
}