Orchestration and configuration management in Python
Project description
Touchdown is a service orchestration framework for python. It provides a python “DSL” for declaring complicated cloud infrastructures and provisioning those blueprints in an idempotent way.
You can find us in #yaybu on irc.oftc.net.
Here is an example Touchdownfile:
aws = workspace.add_aws( region='eu-west-1', ) vpc = aws.add_virtual_private_cloud(name='example') vpc.add_internet_gateway(name="internet") example = vpc.add_subnet( name='application', cidr_block='192.168.0.0/24', ) asg = aws.add_autoscaling_group( name='example', launch_configuration=aws.add_launch_configuration( name="example", ami='ami-62366', subnets=[example], ), )
You can then apply this configuration with:
touchdown apply
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
touchdown-0.6.1.tar.gz
(134.8 kB
view hashes)
Built Distribution
touchdown-0.6.1-py2-none-any.whl
(279.1 kB
view hashes)
Close
Hashes for touchdown-0.6.1-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fc05c1a57995af880636b4d08625c09d94dd914e5a6b6e6c8de5845917e37df |
|
MD5 | 070c5b3dd8bb0f1ff07651cbadf15498 |
|
BLAKE2b-256 | 854ff810c6135c5121f6963218f49b1795524326f27e1e9626ada9f410ccf497 |