Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adonig/aloisius
A Python library to create/update/delete AWS CloudFormation stacks in parallel
https://github.com/adonig/aloisius
aws cloudformation library parallelization python
Last synced: 7 days ago
JSON representation
A Python library to create/update/delete AWS CloudFormation stacks in parallel
- Host: GitHub
- URL: https://github.com/adonig/aloisius
- Owner: adonig
- License: bsd-2-clause
- Created: 2015-06-25T13:20:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-30T20:39:01.000Z (over 7 years ago)
- Last Synced: 2024-08-09T20:14:39.842Z (3 months ago)
- Topics: aws, cloudformation, library, parallelization, python
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 15
- Watchers: 4
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
===========
aloisius
===========.. image:: https://img.shields.io/pypi/v/aloisius.svg
:target: https://pypi.python.org/pypi/aloisius.. image:: https://travis-ci.org/adonig/aloisius.svg?branch=master
:target: https://travis-ci.org/adonig/aloisius.. image:: https://img.shields.io/pypi/l/aloisius.svg
:target: https://opensource.org/licenses/BSD-2-ClauseAbout
=====aloisius helps you to manage the life-cycle of AWS CloudFormation stacks. It
allows you to use outputs from one stack as input parameters to other stacks.
There are other tools which allow you to do so, like i.e. Cumulus or Ansible,
but I couldn't find one which doesn't require you to use YAML or Jinja2. It
is a pure Python library and it is intended to be used in inter-play with
troposphere, but you can also use it with any CloudFormation JSON templates.License
=======The BSD 2-Clause License: http://opensource.org/licenses/BSD-2-Clause
Installation
============aloisius can be installed using the pip distribution system for Python by
issuing::$ pip install aloisius
Alternatively, you can run use setup.py to install by cloning this repository
and issuing::# python setup.py install
Examples
========A simple example creating a VPC containing an RDS could look like this::
#!/usr/bin/env python
from aloisius import Stack
import boto3# I keep my troposphere templates as modules in a package.
from templates.vpc import template as template_vpc
from templates.rds import template as template_rds# You can set your own boto3 session and override the default. E.g:
# aloisius.session = boto3.session.Session(profile_name: "PROFILE")# I normally put some constants and helper functions here.
app_name = 'myapp'
region_name = 'eu-central-1'
stack_name = lambda x: '-'.join([app_name, region_name, x])vpc = Stack(
StackName=stack_name('vpc'),
TargetState='present',
RegionName=region_name,
TemplateBody=template_vpc.to_json(),
)rds = Stack(
StackName=stack_name('rds'),
TargetState='present',
RegionName=region_name,
TemplateBody=template_rds.to_json(),
Parameters={
# You can use outputs of previously created stacks as parameters.
'VpcId': vpc.outputs['VpcId'],
'PrivateSubnets': vpc.outputs['PrivateSubnets'],
# More parameters here.
},
)# You can wait for all of the stacks to finish
aloisius.stacks.wait()
# Or you can check if they were all applied successfuly
if not aloisius.stacks.success():
exit(1)# Or you can iterate over their outputs
for stack in aloisius.stacks:
for key, value in stack.outputs.items():
print "{0}={1}".format(key, value)Why you shouldn't use aloisius
==============================- There's not much documentation (but there are comments in the code).
Why you should use aloisius
===========================- You could find some bugs and help to make it better.
- Parallel stack creation/deletion.
- Integrates nicely with troposphere: No JSON and no YAML.