This repository provides a starter template for getting started creating AWS infrastructure using Ansible and CloudFormation.
To run this playbook on your local machine, you must install the following prerequisites:
- Ansible 2.2 or higher
- Python PIP package manager
- The following PIP packages:
- awscli
- boto
- netaddr
- ndg-httpsclient
- jq
You must also configure your local environment with your AWS credentials and you will also need to specify the ARN of the IAM role that your playbook will use to run provisioning tasks. Your credentials must have permissions to assume this role.
On macOS environments, boto must be installed as follows:
$ sudo -H /usr/bin/python -m easy_install pip
...
...
$ sudo -H /usr/bin/python -m pip install boto
...
...- Fork this repository to your own new repository
- Review
roles/requirements.ymland modify if required - Install roles by running
ansible-galaxy install -r roles/requirements.yml - Define environments in the
inventoryfile andgroup_varsfolder - Define a CloudFormation stack name in
group_vars/all/vars.ymlusing thecf_stack_namevariable - Add the ARN of the IAM role to assume in each environment by configuring the
sts_role_arnvariable ingroup_vars/<environment>/vars.yml - Define your CloudFormation template in
templates/stack.yml.j2. Alternatively you can reference a template included with theaws-cloudformationrole by setting thecf_stack_templatevariable to the path of the template relative to theaws-cloudformationrole folder (e.g.cf_stack_name: "templates/network.yml.j2") - Define environment-specific configuration settings as required in
group_vars/<environment>/vars.yml - If you have stack inputs, define them in using the
cf_stack_inputsdictionary ingroup_vars/all/vars.yml. A common pattern is to then reference environment specific settings for each stack input. - Deploy your stack by running
ansible-playbook site.yml -e env=<environment>
-
Environment specific settings should always be prefixed with
config_, unless you have environment specific settings for variables related to theaws-stsoraws-cloudformationroles as defined below -
Variables related to configuring the
aws-stsrole are prefixed withsts_ -
Variables related to configuring the
aws-cloudformationrole are prefixed withcf_