Codedeploy Support

I can’t seem to find an Ansible module equivalent to the AWS CLI deploy for creating and managing AWS CodeDeploy deployments. Is this intentionally not supported, in development, or was I just looking in the wrong places?

Does anyone have any insight on this?

Bump?

There are boto3 libraries that associate with codedeploy
http://boto3.readthedocs.io/en/latest/reference/services/codedeploy.html

I don’t see any PR’s for it yet
https://github.com/ansible/ansible/pulls

https://github.com/ansible/ansible/blob/devel/lib/ansible/modules/cloud/amazon/GUIDELINES.md

The AWS module guidelines don’t explicitly exclude writing modules for codedeploy.

It doesn’t seem there has been a demand for this in the community with any PR’s supplied. Similar with EMR modules, something I’d be interested in managing through Ansible at the moment.

Thanks for the reply. Looks like you are right, the tools are there, just no one has done it yet. I’ve never contributed to the Ansible codebase before but Ill take a stab at it over the next couple weekends and see if I can’t get something better than using the “command: aws deploy create-application” approach I’ve been using until now.