module Idlc::Deploy::Power

def start_instance(instance, async=false)

def start_instance(instance, async=false)
  msg("Starting Instance (#{instance.id})...")
  instance.start(
    dry_run: false
  )
  unless async
    obj = instance.wait_until_running
    msg('Started Instance: ' + get_name(obj.tags))
  end
end