packer-cn/builder/oracle/classic/step_snapshot.go

40 lines
978 B
Go
Raw Normal View History

2018-01-16 19:55:39 -05:00
package classic
import (
"fmt"
"github.com/hashicorp/go-oracle-terraform/compute"
"github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
)
type stepSnapshot struct{}
func (s *stepSnapshot) Run(state multistep.StateBag) multistep.StepAction {
// get variables from state
ui := state.Get("ui").(packer.Ui)
ui.Say("Creating Snapshot...")
config := state.Get("config").(Config)
client := state.Get("client").(*compute.ComputeClient)
instanceID := state.Get("instance_id").(string)
// get instances client
snapshotClient := client.SnapshotsClient()
// Instances Input
createSnapshotInput := &CreateSnapshotInput{
Instance: instanceID,
MachineImage: config.ImageName,
}
snap, err := snapshotClient.CreateSnapshot(input)
if err != nil {
err = fmt.Errorf("Problem creating snapshot: %s", err)
ui.Error(err.Error())
state.Put("error", err)
return multistep.ActionHalt
}
ui.Say(fmt.Sprintf("Created snapshot (%s).", snap.Name))
}