2018-11-06 14:17:03 -05:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-11-09 14:28:37 -05:00
|
|
|
"fmt"
|
2018-11-06 14:17:03 -05:00
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-04-01/compute"
|
|
|
|
"github.com/Azure/go-autorest/autorest/to"
|
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StepSnapshotDataDisks struct {
|
|
|
|
client *AzureClient
|
2018-11-07 13:08:15 -05:00
|
|
|
create func(ctx context.Context, resourceGroupName string, srcUriVhd string, location string, tags map[string]*string, dstSnapshotName string) error
|
2018-11-06 14:17:03 -05:00
|
|
|
say func(message string)
|
|
|
|
error func(e error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewStepSnapshotDataDisks(client *AzureClient, ui packer.Ui) *StepSnapshotDataDisks {
|
|
|
|
var step = &StepSnapshotDataDisks{
|
|
|
|
client: client,
|
|
|
|
say: func(message string) { ui.Say(message) },
|
|
|
|
error: func(e error) { ui.Error(e.Error()) },
|
|
|
|
}
|
|
|
|
|
|
|
|
step.create = step.createDataDiskSnapshot
|
|
|
|
return step
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepSnapshotDataDisks) createDataDiskSnapshot(ctx context.Context, resourceGroupName string, srcUriVhd string, location string, tags map[string]*string, dstSnapshotName string) error {
|
|
|
|
|
|
|
|
srcVhdToSnapshot := compute.Snapshot{
|
|
|
|
DiskProperties: &compute.DiskProperties{
|
|
|
|
CreationData: &compute.CreationData{
|
2018-11-08 22:30:57 -05:00
|
|
|
CreateOption: compute.Copy,
|
|
|
|
SourceResourceID: to.StringPtr(srcUriVhd),
|
2018-11-06 14:17:03 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Location: to.StringPtr(location),
|
|
|
|
Tags: tags,
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := s.client.SnapshotsClient.CreateOrUpdate(ctx, resourceGroupName, dstSnapshotName, srcVhdToSnapshot)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
2018-11-09 14:28:37 -05:00
|
|
|
return err
|
2018-11-06 14:17:03 -05:00
|
|
|
}
|
|
|
|
|
2018-11-09 14:28:37 -05:00
|
|
|
err = f.WaitForCompletion(ctx, s.client.SnapshotsClient.Client)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
createdSnapshot, err := f.Result(s.client.SnapshotsClient)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-11-09 14:29:57 -05:00
|
|
|
s.say(fmt.Sprintf(" -> Managed Image Data Disk Snapshot : '%s'", *(createdSnapshot.ID)))
|
2018-11-09 14:28:37 -05:00
|
|
|
|
|
|
|
return nil
|
2018-11-06 14:17:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepSnapshotDataDisks) Run(ctx context.Context, stateBag multistep.StateBag) multistep.StepAction {
|
|
|
|
s.say("Taking snapshot of OS disk ...")
|
|
|
|
|
2018-11-09 14:28:37 -05:00
|
|
|
var resourceGroupName = stateBag.Get(constants.ArmManagedImageResourceGroupName).(string)
|
2018-11-06 14:17:03 -05:00
|
|
|
var location = stateBag.Get(constants.ArmLocation).(string)
|
|
|
|
var tags = stateBag.Get(constants.ArmTags).(map[string]*string)
|
|
|
|
var additionalDisks = stateBag.Get(constants.ArmAdditionalDiskVhds).([]string)
|
|
|
|
var dstSnapshotPrefix = stateBag.Get(constants.ArmManagedImageDataDiskSnapshotPrefix).(string)
|
|
|
|
|
|
|
|
for i, disk := range additionalDisks {
|
|
|
|
dstSnapshotName := dstSnapshotPrefix + strconv.Itoa(i)
|
|
|
|
err := s.create(ctx, resourceGroupName, disk, location, tags, dstSnapshotName)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
stateBag.Put(constants.Error, err)
|
|
|
|
s.error(err)
|
|
|
|
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2018-11-09 14:28:37 -05:00
|
|
|
|
2018-11-06 14:17:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*StepSnapshotDataDisks) Cleanup(multistep.StateBag) {
|
|
|
|
}
|