Skip to content

Ansible repo for creating a multi-az ec2 VPC with a NAT auto scaling group

License

Notifications You must be signed in to change notification settings

vinthedark/ansible_ec2_vpc_nat_asg

 
 

Repository files navigation

Ansible repo for building an ec2 VPC with Auto Scaling NAT group

WARNING - this repo requires use of ansible v2 (devel) modules

Summary

The playbook and example var file will create a 2 tiered AWS ec2 VPC using multiple Availability Zones (AZs). In order for the private instances to access the internet, it uses NAT instances and manages these through an auto scaling group.

Image of VPC

When the NAT instances start, they associate themselves with an EIP (so any outbound traffic comes from a known source) and, based on what subnet they're in, attempt to replace the route. They use https://github.com/HighOps/ec2-nat-failover to do this.

What's Included

At present, it includes

  • a variable file example for setting up a multi-AZ VPC
  • an operations bootstrap playbook that loads a variable file based on the extra-var env passed, and
    • creates the VPC
    • creates the internet gateway
    • creates the subnets
    • creates the route tables
    • creates the security groups
    • creates the nat instance auto scaling launch configuration
    • creates the nat instance auto scaling group

Dependencies

  • you have ansible v2 (devel) installed, and the new vpc module pull requests merged in
  • you have the python boto library installed, and it's the latest version
  • you are using a ~/.boto config file or ENV variables for the AWS Access Key and AWS Secret Key

Ansible setup

Because it's using brand new VPC modules, which are only currently available as Pull Requests (PRs)!, the following is required

cd ~
mkdir git ; cd git
git clone [email protected]:ansible/ansible.git
git clone [email protected]:ansible/ansible-modules-core.git
git clone [email protected]:ansible/ansible-modules-extras.git

cd ansible-modules-extras
git checkout -b new_vpc_modules
git fetch origin pull/651/head:ec2_vpc_igw
git fetch origin pull/597/head:ec2_vpc_route_table
git fetch origin pull/598/head:ec2_vpc_subnet
git merge ec2_vpc_igw
git merge ec2_vpc_route_table
git merge ec2_vpc_subnet

Then update the ansible.cfg library param to include the path to the ansible-modules-core and ansible-modules-extras directories.

Pre-reqs

  • an ec2 keypair, set in the nat auto scaling launch configuration
  • a pair of allocated (but not associated) EIPs
  • an IAM role and policy, used by the nat instances to allocate EIPs and take over routes, e.g. -- Role: prodNATMonitor -- Policy:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "prodNATMonitorInstanceAccess",
            "Action": [
                "ec2:AssociateAddress",
                "ec2:CreateRoute",
                "ec2:DescribeInstances",
                "ec2:DescribeRouteTables",
                "ec2:ModifyInstanceAttribute",
                "ec2:ReplaceRoute"
            ],
            "Effect": "Allow",
            "Resource": "*",
            "Condition": {
                "ForAllValues:StringLike": {
                    "ec2:ResourceTag/Environment": "prod*",
                    "ec2:ResourceTag/Role": "nat*"
                }
            }
        }
    ]
}

Note that the Role name should be of the form env + 'NATMonitor', if you use something else, make sure you update the var file

Usage

Review and create/modify a variable file, see vars/ for existing examples. Changes you probably want to make include

  • the region
  • the CIDR range and subnets
  • the AMI ID for the nat instance type in the region (search for amzn-ami-vpc-nat-hvm-2015.03.0.x86_64-gp2 or later in the Community AMIs)
  • the AMI ID for a bastion instance type in the region
  • the ssh key_name

Once you are happy with your var file, run it, e.g.

ansible-playbook plays/operation/bootstrap_vpc.yml --extra-vars "env=prod"

Known Issues

  • the ansible modules used are currently still Pull Requests, so are subject to change and have not been approved
  • the new modules require ansible v2 (devel), which is still under heavy development and subject to errors
  • the route table module currently forces the destination, which means an auto scaling setup that changes it later will cause an error in a re-run

Troubleshooting

  • you get an error when creating subnets, that an availability zone doesn't exist

    Each IAM account doesn't have access to all availability zones in a region, make sure you use the ones available.

    If you change the az's defined, make sure that you remove any invalid subnets created as this won't be done automatically.

  • your nat instances don't automatically get an elastic ip

    In the auto scaling launch configuration, check the user data, and make sure that the id's match exisitng objects. Note that this may not be the case if you've previously created subnets and then moved them to new az's.

  • your nat instances don't nat make sure you're using the correct nat ami, if in doubt, ssh to the bastion and then to the nat and verify that the user data has been run.

  • you're near the end of the playbook, and something went wrong - e.g. the bastion ami - and re-running errors at the route table setup.

    Unfortunately this is a known issue. You'll need to remove the auto scaling group, auto scaling launch configuration, update the route tables on the private subnets so that the 0.0.0.0/0 destination uses the igw, and then you'll be able to re-run.

Todo

  • create a playbook to generate an AMI with the nat_monitor script baked in
  • update the nat_monitor script to create the route if it doesn't exist
  • add handling of the IAM Policy
  • add updating of the IAM Policy to use specific arn values for resources

About

Ansible repo for creating a multi-az ec2 VPC with a NAT auto scaling group

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.5%
  • Shell 1.5%