Release v0.1.5 (What’s new?).

Documentation Status https://github.com/MacHu-GWU/aws_config-project/actions/workflows/main.yml/badge.svg https://codecov.io/gh/MacHu-GWU/aws_config-project/branch/main/graph/badge.svg https://img.shields.io/pypi/v/aws-config.svg https://img.shields.io/pypi/l/aws-config.svg https://img.shields.io/pypi/pyversions/aws-config.svg https://img.shields.io/badge/✍️_Release_History!--None.svg?style=social&logo=github https://img.shields.io/badge/⭐_Star_me_on_GitHub!--None.svg?style=social&logo=github
https://img.shields.io/badge/Link-API-blue.svg https://img.shields.io/badge/Link-Install-blue.svg https://img.shields.io/badge/Link-GitHub-blue.svg https://img.shields.io/badge/Link-Submit_Issue-blue.svg https://img.shields.io/badge/Link-Request_Feature-blue.svg https://img.shields.io/badge/Link-Download-blue.svg

Welcome to aws_config Documentation

https://aws-config.readthedocs.io/en/latest/_static/aws_config-logo.png

aws_config is a well-defined configuration management framework for multi-environment applications that uses AWS services as the configuration backend. This library is built from years of Amazon best practices for managing application configurations at scale.

The framework provides hierarchical configuration management with inheritance, automatic parameter generation for different environments (dev, test, prod), and seamless integration with AWS SSM Parameter Store and S3. It eliminates configuration drift between environments while maintaining security through proper secret management.

Key benefits include type-safe configuration classes, environment-specific parameter validation, automated deployment to AWS backend services, and built-in configuration inheritance that reduces duplication across environments.

from aws_config import BaseConfig, BaseEnv, BaseEnvNameEnum
from pydantic import Field

class EnvNameEnum(BaseEnvNameEnum):
    dev = "dev"
    prod = "prod"

class Env(BaseEnv):
    username: str = Field()
    password: str = Field()

class Config(BaseConfig[Env, EnvNameEnum]):
    pass

config = Config(
    data={
        "_defaults": {
            "*.project_name": "my_app",
        }
        "dev": {
            "username": "alice"
        },
        "prod": {
            "username": "bob"
        }
    },
    secret_data={
        "dev": {
            "username": "alice-pwd"
        },
        "prod": {
            "username": "bob-pwd"
        }
    },
    EnvClass=Env,
    EnvNameEnumClass=EnvNameEnum,
)
env = config.get_env(EnvNameEnum.dev)

Install

aws_config is released on PyPI, so all you need is to:

$ pip install aws-config

To upgrade to latest version:

$ pip install --upgrade aws-config

Table of Content

About the Author

(\ (\
( -.-)o
o_(")(")

Sanhe Hu is a seasoned software engineer with a deep passion for Python development since 2010. As an author and maintainer of 150+ open-source Python projects, with over 15 million monthly downloads, I bring a wealth of experience to the table. As a Senior Solution Architect and Subject Matter Expert in AI, Data, Amazon Web Services, Cloud Engineering, DevOps, I thrive on helping clients with platform design, enterprise architecture, and strategic roadmaps.

Talk is cheap, show me the code:

API Document