AWS Configuration Mangement
Project description
roadhouse
Library for sanely managing AWS security settings
Why does this exist?
Managing your AWS security settings through the AWS console is problematic for several reasons. Aside from using the console, your options are to use a library like boto. This is fine, but really more work than I care to do for my environments.
Roadhouse is an attempt to apply configuration management to AWS’s settings. Think of it as Puppet/Chef/Salt for AWS.
Within roadhouse, a config can be applied to a VPC. This allows the same configuration to be used across multiple VPCs. It’s useful in cases where you want to run multiple VPCs with the same configuration. For instance, this is useful when running across multiple datacenters for fault tolerance.
Config File Syntax
The config file is YAML based. Groups are the top level object. Within a group are options and rules. Rules are specified using a syntax similar to tcpdump (at a very, very trivial level). For ICMP protocol we use ICMP Type Numbers for port. More information is available at: https://www.iana.org/assignments/icmp-parameters/icmp-parameters.xhtml
<protocol:optional, tcp by default> <port> <group_or_ip_mask_optional>
It should be easier to understand a valid configuration based on example:
- test_database_group:
- options:
description: cassandra and redis prune: true # remove rules not listed here
- rules:
tcp port 22 166.1.1.1/32 # mysterious office IP
tcp port 9160, 6379 test_web_group # refer to a group by name
port 55 192.168.1.1 # /32 by default
tcp port 22-50, 55-60 192.168.1.1
icmp port 0 192.168.1.1 # ICMP Type 0; Echo Reply
- test_web_group:
- options:
description: web servers prune: false # false by default
- rules:
tcp port 80 0.0.0.0/0
icmp port 8 192.168.1.1/32 # ICMP Type 8; Timestamp
Usage
from roadhouse.group import SecurityGroupsConfig v = vpc.connect_to_region(‘us-west-1’) e = ec2.connect_to_region(‘us-west-1’)
# assuming you only have 1 vpc already created # otherwise you’ll need to pick the right VPC you want # to apply your changes to vpc = v.get_all_vpcs()[0]
config = SecurityGroupsConfig.load(“roadhouse.yaml”) config.configure(ec2_conn) config.apply(vpc)
Development
In a virtualenv, pip install -r requirements
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file roadhouse-0.5.tar.gz
.
File metadata
- Download URL: roadhouse-0.5.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 709997d4c46a0a994ca4ccfe9fb0ff59f123202146d1629aae194347c39fc26c |
|
MD5 | bd3fac9f7acf8620db309e0484785e9e |
|
BLAKE2b-256 | 85b4a0a3f7cca2871c2eb2ae7641f608f53ad28b3e6d957177d8fdda50c5fdd0 |