2019-10-14 10:43:59 -04:00
|
|
|
//go:generate mapstructure-to-hcl2 -type Config,imageFilter
|
|
|
|
|
2018-10-17 06:15:47 -04:00
|
|
|
package hcloud
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2019-10-31 10:49:34 -04:00
|
|
|
"time"
|
2018-10-17 06:15:47 -04:00
|
|
|
|
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/common/uuid"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
|
|
"github.com/hashicorp/packer/helper/config"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
|
|
"github.com/hetznercloud/hcloud-go/hcloud"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
Comm communicator.Config `mapstructure:",squash"`
|
|
|
|
|
2019-10-31 06:31:17 -04:00
|
|
|
HCloudToken string `mapstructure:"token"`
|
|
|
|
Endpoint string `mapstructure:"endpoint"`
|
|
|
|
|
2019-10-31 10:49:34 -04:00
|
|
|
PollInterval time.Duration `mapstructure:"poll_interval"`
|
2018-10-17 06:15:47 -04:00
|
|
|
|
2019-08-05 04:10:59 -04:00
|
|
|
ServerName string `mapstructure:"server_name"`
|
|
|
|
Location string `mapstructure:"location"`
|
|
|
|
ServerType string `mapstructure:"server_type"`
|
|
|
|
Image string `mapstructure:"image"`
|
|
|
|
ImageFilter *imageFilter `mapstructure:"image_filter"`
|
2018-10-17 06:15:47 -04:00
|
|
|
|
2018-11-27 14:41:32 -05:00
|
|
|
SnapshotName string `mapstructure:"snapshot_name"`
|
|
|
|
SnapshotLabels map[string]string `mapstructure:"snapshot_labels"`
|
|
|
|
UserData string `mapstructure:"user_data"`
|
|
|
|
UserDataFile string `mapstructure:"user_data_file"`
|
|
|
|
SSHKeys []string `mapstructure:"ssh_keys"`
|
2018-10-17 06:15:47 -04:00
|
|
|
|
2018-11-23 14:35:32 -05:00
|
|
|
RescueMode string `mapstructure:"rescue"`
|
|
|
|
|
2018-10-17 06:15:47 -04:00
|
|
|
ctx interpolate.Context
|
|
|
|
}
|
|
|
|
|
2019-08-05 04:10:59 -04:00
|
|
|
type imageFilter struct {
|
|
|
|
WithSelector []string `mapstructure:"with_selector"`
|
|
|
|
MostRecent bool `mapstructure:"most_recent"`
|
|
|
|
}
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
func (c *Config) Prepare(raws ...interface{}) ([]string, error) {
|
2018-10-17 06:15:47 -04:00
|
|
|
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 {
|
2019-12-17 05:25:56 -05:00
|
|
|
return nil, err
|
2018-10-17 06:15:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Defaults
|
|
|
|
if c.HCloudToken == "" {
|
|
|
|
c.HCloudToken = os.Getenv("HCLOUD_TOKEN")
|
|
|
|
}
|
|
|
|
if c.Endpoint == "" {
|
|
|
|
if os.Getenv("HCLOUD_ENDPOINT") != "" {
|
|
|
|
c.Endpoint = os.Getenv("HCLOUD_ENDPOINT")
|
|
|
|
} else {
|
|
|
|
c.Endpoint = hcloud.Endpoint
|
|
|
|
}
|
|
|
|
}
|
2019-10-31 10:49:34 -04:00
|
|
|
if c.PollInterval == 0 {
|
|
|
|
c.PollInterval = 500 * time.Millisecond
|
2018-10-17 06:15:47 -04: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.ServerName == "" {
|
|
|
|
// Default to packer-[time-ordered-uuid]
|
|
|
|
c.ServerName = fmt.Sprintf("packer-%s", uuid.TimeOrderedUUID())
|
|
|
|
}
|
|
|
|
|
|
|
|
var errs *packer.MultiError
|
|
|
|
if es := c.Comm.Prepare(&c.ctx); len(es) > 0 {
|
|
|
|
errs = packer.MultiErrorAppend(errs, es...)
|
|
|
|
}
|
|
|
|
if c.HCloudToken == "" {
|
|
|
|
// Required configurations that will display errors if not set
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("token for auth must be specified"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.Location == "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("location is required"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.ServerType == "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("server type is required"))
|
|
|
|
}
|
|
|
|
|
2019-08-05 04:10:59 -04:00
|
|
|
if c.Image == "" && c.ImageFilter == nil {
|
2018-10-17 06:15:47 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
2019-08-05 04:10:59 -04:00
|
|
|
errs, errors.New("image or image_filter is required"))
|
|
|
|
}
|
|
|
|
if c.ImageFilter != nil {
|
|
|
|
if len(c.ImageFilter.WithSelector) == 0 {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("image_filter.with_selector is required when specifying filter"))
|
|
|
|
} else if c.Image != "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("only one of image or image_filter can be specified"))
|
|
|
|
}
|
2018-10-17 06:15:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if c.UserData != "" && c.UserDataFile != "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("only one of user_data or user_data_file can be specified"))
|
|
|
|
} else if c.UserDataFile != "" {
|
|
|
|
if _, err := os.Stat(c.UserDataFile); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New(fmt.Sprintf("user_data_file not found: %s", c.UserDataFile)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2019-12-17 05:25:56 -05:00
|
|
|
return nil, errs
|
2018-10-17 06:15:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
packer.LogSecretFilter.Set(c.HCloudToken)
|
2019-12-17 05:25:56 -05:00
|
|
|
return nil, nil
|
2018-10-17 06:15:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func getServerIP(state multistep.StateBag) (string, error) {
|
|
|
|
return state.Get("server_ip").(string), nil
|
|
|
|
}
|