AWS CDK package that creates a highly opinionated application load balancer.
Project description
AWS ALB (Application Load Balancer)
An abstract application loadbalancer construct. It creates a loadbalancer and default security groups and listeners for the loadbalancer. Also, this loadbalancer is ready for blue-green deployments.
Remarks
The project is written by Laimonas Sutkus and is owned by iDenfy. This is an open source library intended to be used by anyone. iDenfy aims to share its knowledge and educate market for better and more secure IT infrastructure.
Related technology
This project utilizes the following technology:
- AWS (Amazon Web Services).
- AWS CDK (Amazon Web Services Cloud Development Kit).
- AWS CloudFormation.
- AWS Loadbalancer.
- AWS Security groups.
Assumptions
This library project assumes the following:
- You have knowledge in AWS (Amazon Web Services).
- You have knowledge in AWS CloudFormation and AWS loadbalancing.
- You are managing your infrastructure with AWS CDK.
- You are writing AWS CDK templates with a python language.
Install
The project is built and uploaded to PyPi. Install it by using pip.
pip install aws-alb
Or directly install it through source.
./build.sh -ic
Description
It is usually hard to create a loadbalancer following best practices and rules. Also, most of the time the deployed loadbalancer will lack some configuration functionality for deployment management. We tackle these problems by providing you a library to easily deploy and maintain a loadbalancer with right security groups, right listeners and most importantly right configuration for blue-green deployments.
Examples
To create an application loadbalancer create an ApplicationLoadbalancer
instance in your stack. An example is given below:
from aws_cdk import core, aws_ec2
from aws_alb.params.listener_params import ListenerParams
from aws_alb.params.target_group_params import TargetGroupParams
from aws_alb.application_loadbalancer import ApplicationLoadbalancer
class MainStack(core.Stack):
def __init__(self, scope: core.App) -> None:
super().__init__(
scope=scope,
id='MyCoolStack'
)
# Create your own vpc.
self.vpc = aws_ec2.Vpc(
self,
'MyCoolVpc'
)
self.public_http_loadbalancer = ApplicationLoadbalancer(
scope=self,
prefix='MyCool',
vpc=self.vpc,
loadbalancer_subnets=self.vpc.public_subnets,
security_groups=None,
)
# Now lets create listeners and target groups for blue green deployments.
blue, green = self.public_http_loadbalancer.listeners.create_blue_green(
listener_params=ListenerParams(
prefix='MyCool',
loadbalancer=self.public_http_loadbalancer.loadbalancer,
),
target_group_params=TargetGroupParams(
prefix='MyCool',
vpc=self.vpc,
)
)
# If you need, you can access created target groups and listeners.
blue_target_group, blue_listener = blue
green_target_group, green_listener = green
Release history
2.0.1
Readme update.
2.0.0
Complete refactor. Instead of creating default listeners add an ability to create custom listeners and target groups. The loadbalancer now exposes an explicit method to easily create a pair of listeners and a pair of target groups for easy out-of-the-box blue/green deployment configuration.
1.0.2
Renames.
1.0.1
Bug fix.
1.0.0
Initial project.
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
Built Distribution
File details
Details for the file aws_alb-2.0.1.tar.gz
.
File metadata
- Download URL: aws_alb-2.0.1.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0721cb68674fb6f82cd39cdc62bcebedd08c422c951721bb2657e8c52ce9e2db |
|
MD5 | 387b2f785d5bbf9fda9a767246167c06 |
|
BLAKE2b-256 | af77447a4ad1567428119ec2f817a9a8a437c88c0bce80a36914a7f1089a2ee6 |
File details
Details for the file aws_alb-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: aws_alb-2.0.1-py3-none-any.whl
- Upload date:
- Size: 23.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8be37112af501d99fb54a567fd0fd626ea15c7670e9e1c4144f6995a45a7c17e |
|
MD5 | c4de53744904725d0fe5c9fe93034050 |
|
BLAKE2b-256 | 6d50ff22eb5a521e8dd9747cc5d495f643c614c0765c54806f58f70a74ec233f |