26 lines
704 B
Go
26 lines
704 B
Go
package arm
|
|
|
|
import (
|
|
"context"
|
|
|
|
commonhelper "github.com/hashicorp/packer/helper/common"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
type StepSaveWinRMPassword struct {
|
|
Password string
|
|
BuildName string
|
|
}
|
|
|
|
func (s *StepSaveWinRMPassword) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
// store so that we can access this later during provisioning
|
|
commonhelper.SetSharedState("winrm_password", s.Password, s.BuildName)
|
|
packer.LogSecretFilter.Set(s.Password)
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *StepSaveWinRMPassword) Cleanup(multistep.StateBag) {
|
|
commonhelper.RemoveSharedStateFile("winrm_password", s.BuildName)
|
|
}
|