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.14.0.tar.gz
(158.4 kB
view hashes)
Built Distribution
touchdown-0.14.0-py2.py3-none-any.whl
(320.2 kB
view hashes)
Close
Hashes for touchdown-0.14.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5fadc5d3406f276207e4e50991e532a6208e75c15dde4bebb3156e557003bbc |
|
MD5 | 5b4d1c36fbb126995114b62a58bab661 |
|
BLAKE2b-256 | bf08b326735c61e969cc53e3d4f2b56afc45dc5f3c91a3c2774bf78c19289e85 |