Commit 8a9a59c3 authored by Clint Shryock's avatar Clint Shryock

check if newDevice.EBS is nil

parent 9f8b0041
...@@ -34,7 +34,7 @@ func (s *StepRegisterAMI) Run(state multistep.StateBag) multistep.StepAction { ...@@ -34,7 +34,7 @@ func (s *StepRegisterAMI) Run(state multistep.StateBag) multistep.StepAction {
// assume working from a snapshot, so we unset the Encrypted field if set, // assume working from a snapshot, so we unset the Encrypted field if set,
// otherwise AWS API will return InvalidParameter // otherwise AWS API will return InvalidParameter
if newDevice.EBS.Encrypted != nil { if newDevice.EBS != nil && newDevice.EBS.Encrypted != nil {
newDevice.EBS.Encrypted = nil newDevice.EBS.Encrypted = nil
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment