Skip to main content

Buzzerboy Architecture for Deploying Web Applications on AWS LightSail

Project description

AWS Infrastructure with CDKTF (Python)

This project uses the Cloud Development Kit for Terraform (CDKTF) with Python to define and deploy AWS infrastructure using named AWS profiles via ~/.aws/credentials and ~/.aws/config.


✅ Prerequisites

1. Install Required Tools

Make sure the following tools are installed:

  • Node.js (v16 or later)
  • npm
  • Terraform CLI
  • Python 3.7+
  • AWS CLI

macOS Example:

brew install node
brew install terraform
brew install python
brew install awscli

2. Install CDKTF CLI

npm install -g cdktf-cli

3a. Configure AWS CLI (Option 1 - Use AWS Provided Tooling)

aws configure --profile myprofile

This creates or updates the following files:

~/.aws/credentials:

[myprofile]
aws_access_key_id=YOUR_ACCESS_KEY
aws_secret_access_key=YOUR_SECRET_KEY

~/.aws/config:

[profile myprofile]
region=us-west-2
output=json

3b. Configure AWS CLI (Option 2 - Use Open Source AWS Login - Recommended)

3b - 1. Clone the code repo from Fahad Zain Jawaid

git clone https://github.com/fahadzainjawaid/awsIdentityTools

You can follow the ReadMe on the repo above to get latest usage and setup guides.


🚀 Getting Started

1. Install the package

pip install pip install BBAWSLightsailMiniV1a

2. Set Up Python Environment & Install Dependencies

python3 -m venv .venv
source .venv/bin/activate
export PIPENV_VERBOSITY=-1
pip install -r requirements.txt

3. Install AWS Provider Bindings

cdktf get

4. Synthesize Terraform Configuration

cdktf synth

5. Review the Plan

cdktf plan

6. Deploy the Infrastructure

cdktf deploy

7. Destroy the Infrastructure (if needed)

cdktf destroy

✅ ArchitectureMaker Usage

The preferred entrypoint is ArchitectureMaker, which builds stacks from a simple definition dict. Examples are mirrored in the samples directory.

Container + Database (default)

from BuzzerboyAWSLightsailStack import ArchitectureMaker

definition = {
    "product": "bb",
    "name": "sample-container-db",
    "tier": "dev",
    "organization": "buzzerboy",
    "region": "us-east-1",
}

ArchitectureMaker.auto_main(definition, include_compliance=False)

Container Only

from BuzzerboyAWSLightsailStack import ArchitectureMaker

definition = {
    "product": "bb",
    "name": "sample-container",
    "tier": "dev",
    "organization": "buzzerboy",
    "region": "us-east-1",
}

ArchitectureMaker.auto_main_container_only(definition, include_compliance=False)

Database Only

from BuzzerboyAWSLightsailStack import ArchitectureMaker

definition = {
    "product": "bb",
    "name": "sample-db",
    "tier": "dev",
    "organization": "buzzerboy",
    "region": "us-east-1",
    "databases": ["app_db", "analytics_db", "logging_db", "audit_db"],
}

ArchitectureMaker.auto_stack_db_only(definition, include_compliance=False)

Example cdktf.json

{
  "language": "python",
  "app": "python main.py",
  "projectId": "9bad9bb7-b21d-4513-9ce9-74a6e2f7e0d9",
  "sendCrashReports": "true",
  "terraformProviders": [
    "aws@~> 5.0",
    "random@~> 3.5",
    "null@~> 3.2"
  ],
  "terraformModules": [],
  "codeMakerOutput": "imports",
  "context": {}
}

Example requirements.txt

cdktf>=0.17.0,<1.0
constructs>=10.0.0,<11.0
cdktf-cdktf-provider-aws>=12.0.0
cdktf-cdktf-provider-random>=8.0.0
cdktf-cdktf-provider-null>=9.0.0
-e ../../BuzzerboyAWSLightsail

Sample Paths

  • samples/ContainerAndDB
  • samples/ContainerOnly
  • samples/DBOnly

🛠 Useful Commands

Command Description
cdktf get Install provider bindings
cdktf synth Generate Terraform JSON config
cdktf plan Preview planned changes
cdktf deploy Deploy infrastructure to AWS
cdktf destroy Destroy deployed infrastructure

📁 .gitignore Suggestions

.venv/
cdktf.out/
.terraform/
__pycache__/
*.pyc

📝 Notes

  • To install additional Python packages:

    pip install <package>
    pip freeze > requirements.txt
    
  • To suppress pipenv verbosity in environments where pipenv is used:

    export PIPENV_VERBOSITY=-1
    

📚 References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

buzzerboyawslightsail-0.332.1.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

buzzerboyawslightsail-0.332.1-py3-none-any.whl (37.5 kB view details)

Uploaded Python 3

File details

Details for the file buzzerboyawslightsail-0.332.1.tar.gz.

File metadata

  • Download URL: buzzerboyawslightsail-0.332.1.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.14.2

File hashes

Hashes for buzzerboyawslightsail-0.332.1.tar.gz
Algorithm Hash digest
SHA256 da31bf9166eaf4c81cfdf35bd01939a4b2af20ca3d05f5aad0bca5b3e58e2b5a
MD5 186bdd90955005f4c931aff17aa145de
BLAKE2b-256 8f3fb04c723760af3b964522331ba9437d2aacea1f48aa930ed0052a78daf268

See more details on using hashes here.

File details

Details for the file buzzerboyawslightsail-0.332.1-py3-none-any.whl.

File metadata

File hashes

Hashes for buzzerboyawslightsail-0.332.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6e5b863e5a01dfa8607e7d743cdb4b34f52c5e5e9653cc446f925b8da6972716
MD5 48b436fc132f2b99f5f7a8aea18af00a
BLAKE2b-256 75910feebfe1d703d622ce59b06684ae02f344b6e2238bed73270eb5c22da319

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page