Merge pull request #2243 from amenonsen/ec2-init
Fix v2 breakage: Add missing variable initializations
This commit is contained in:
commit
92d25017ed
1 changed files with 2 additions and 0 deletions
|
@ -1226,6 +1226,8 @@ def startstop_instances(module, ec2, instance_ids, state, instance_tags):
|
||||||
|
|
||||||
wait = module.params.get('wait')
|
wait = module.params.get('wait')
|
||||||
wait_timeout = int(module.params.get('wait_timeout'))
|
wait_timeout = int(module.params.get('wait_timeout'))
|
||||||
|
source_dest_check = module.params.get('source_dest_check')
|
||||||
|
termination_protection = module.params.get('termination_protection')
|
||||||
changed = False
|
changed = False
|
||||||
instance_dict_array = []
|
instance_dict_array = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue