packer-cn/builder/ucloud/uhost/step_config_vpc.go

43 lines
972 B
Go
Raw Normal View History

2019-06-13 03:16:49 -04:00
package uhost
import (
"context"
"fmt"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
)
type stepConfigVPC struct {
VPCId string
}
func (s *stepConfigVPC) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
client := state.Get("client").(*UCloudClient)
ui := state.Get("ui").(packer.Ui)
if len(s.VPCId) != 0 {
ui.Say(fmt.Sprintf("Trying to use specified vpc %q...", s.VPCId))
vpcSet, err := client.describeVPCById(s.VPCId)
if err != nil {
if isNotFoundError(err) {
err = fmt.Errorf("the specified vpc %q does not exist", s.VPCId)
2019-06-13 03:16:49 -04:00
return halt(state, err, "")
}
2019-06-19 09:32:33 -04:00
return halt(state, err, fmt.Sprintf("Error on querying specified vpc %q", s.VPCId))
2019-06-13 03:16:49 -04:00
}
state.Put("vpc_id", vpcSet.VPCId)
return multistep.ActionContinue
}
ui.Say(fmt.Sprintf("Trying to use default vpc..."))
return multistep.ActionContinue
}
func (s *stepConfigVPC) Cleanup(state multistep.StateBag) {
}