Hi,
To ensure that all our playbooks continue running on the upcoming Ansible 2.0, I decided to give it a test run.
Did a clean checkout in a new tree and attempted to run my playbooks, sadly I immediately run into an error:
TASK [ec2-group : ec2-group : include] ******************************************
fatal: [xxxx]: FAILED! => {"msg": "ERROR! Invalid shell type specified (bash), or the plugin for that shell type is missing.", "failed": true}
Contents of this role:
---
- include: vpc.yml
when: ec2_vpc_id is defined
- include: non-vpc.yml
when: ec2_vpc_id is not defined
Both of those files invoke the 'ec2_group' module on their turn.
Just to make sure, after this I installed ansible (current release) using pip and ran the playbooks without any problems.
Thanks,
Nico