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
...
with_items: rds_instances