Given a need to launch multiple cloud resources via local action, such as 
the below, is there a way to parallelize the execution of the task?

I think I'm looking for something like `--forks <n>`, except this is 
different in that there is only one host (localhost) involved in the play.

---
- hosts: localhost
  connection: local
  tasks:
    - local_action:
        module: rds
        name: "{{ item.name }}"
        ...
      with_items: rds_instances


-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/68931b6e-093c-4e9c-9545-ed14d5e9f75f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to