Merge pull request #7203 from paulmey/deallocate

[azure] use deallocate instead of just power-off
This commit is contained in:
Paul Meyer 2019-01-16 11:32:39 -08:00 committed by GitHub
commit a01dfb7834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ func NewStepPowerOffCompute(client *AzureClient, ui packer.Ui) *StepPowerOffComp
} }
func (s *StepPowerOffCompute) powerOffCompute(ctx context.Context, resourceGroupName string, computeName string) error { func (s *StepPowerOffCompute) powerOffCompute(ctx context.Context, resourceGroupName string, computeName string) error {
f, err := s.client.VirtualMachinesClient.PowerOff(ctx, resourceGroupName, computeName) f, err := s.client.VirtualMachinesClient.Deallocate(ctx, resourceGroupName, computeName)
if err == nil { if err == nil {
err = f.WaitForCompletion(ctx, s.client.VirtualMachinesClient.Client) err = f.WaitForCompletion(ctx, s.client.VirtualMachinesClient.Client)
} }