EC2 インスタンスのリストに対して ansible adhoc コマンドを実行したいと考えています。ansibleに順番に実行させたいのですが、ansibleはそれらをランダムに実行します。例えば:
13:42:21 @cnayak ansible :► ansible aws -a "hostname"
ec2 | SUCCESS | rc=0 >>
ip-172-31-36-255
ec3 | SUCCESS | rc=0 >>
ip-172-31-45-174
13:42:26 @cnayak ansible :► ansible aws -a "hostname"
ec3 | SUCCESS | rc=0 >>
ip-172-31-45-174
ec2 | SUCCESS | rc=0 >>
ip-172-31-36-255
それらを順番に実行させる方法はありますか?