Hi Guys,
I'm looking for a step by step process to configure GitHub, Jenkins (CI) and Ansible (CD) so that a code from local machine to -> Github -> Jenkins (CI) -> Ansible (CD) -> local or EC2 can be deployed.
Also looking for a list of all parameters available to deploy AWS resources, example: parameter below for 'security_group, from_port, to_port, cidr_ip etc..:
---
# set these parameters to control the region, keypair, and AMI that are launched
ec2_region: us-east-1
instances_keypair: keypair-name
image_id: ami-bf5012d6
# security groups to be created
security_groups:
- name: ssh
desc: the security group for the jumphost
rules:
- proto: tcp
from_port: 22
to_port: 22
Any help would be greatly appreciated.
Cheers,