AWS Traffic Policy Document creation library
Project description
About
atc53 - library to create AWS Route53 Traffic Policy Document descriptions.
This library operates in a similar fashion to troposphere by aiming for compatibility and familiarity when defining infrastructure.
Installation
atc53 can be installed using the pip distribution system for Python by issuing:
$ pip install atc53
Examples
A simple example, showing a fail over rule between two load balancers:
from atc53 import PolicyDocument
from atc53.endpoint import Endpoint
from atc53.rule.failover import FailoverRule, Primary, Secondary
p = PolicyDocument()
main = Endpoint('MainEndpoint',
Type='elastic-load-balancer',
Value='elb-222222.us-west-1.elb.amazonaws.com')
backup = Endpoint('BackupEndpoint',
Type='elastic-load-balancer',
Value='elb-111111.us-west-1.elb.amazonaws.com')
rule = FailoverRule('TestFailoverRule',
Primary=Primary(
EndpointReference='MainEndpoint'),
Secondary=Secondary(
EndpointReference='BackupEndpoint')
)
p.add_endpoint(main)
p.add_endpoint(backup)
p.add_rule(rule)
print(p.to_json())
Licensing
atc53 is licensed under the BSD 2-Clause license. See LICENSE for the full license text.
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
atc53-0.1.0.tar.gz
(6.7 kB
view details)
Built Distribution
atc53-0.1.0-py2-none-any.whl
(8.7 kB
view details)
File details
Details for the file atc53-0.1.0.tar.gz
.
File metadata
- Download URL: atc53-0.1.0.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4b5f10f40d5b3984a8b78077835ab5833ad68e2d9257b9978eef6423599392d |
|
MD5 | 58db90a3e1fda2410699244d66007c76 |
|
BLAKE2b-256 | c668d32814574df9fae29f58e23e7b2a6b9c08055b7ba48cf7c4ca103d0473ea |
File details
Details for the file atc53-0.1.0-py2-none-any.whl
.
File metadata
- Download URL: atc53-0.1.0-py2-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cbbc700ef03297f6c75df7c4d97f5ddff3bcdea7d93b619cc5f318e8b3d8120 |
|
MD5 | 5bc6f7ce401d9d209a894b9067f58c61 |
|
BLAKE2b-256 | dbbb5092f05446b50466ab016b9adcf23d9200facbedd8f1748f28e64c650f55 |