cdk-appconfig
TypeScript icon, indicating that this package has built-in type declarations

0.0.1-beta.27 • Public • Published

cdk-appconfig

Motivation

This simple project was inspired from this stackoverflow question, where I shared this answer.

When I read docs on the AppConfig construct library, I soon realized that it was ripe for L2 and L3 constructs. Hence this library.

PRs are always welcome !

To-Do/Work In Progress (PRs welcome!!!)

  • [x] A more customizable construct allowing consumers for a deeper configuration.
  • [ ] Add support for semantic validation.

Releases

Language Repository
JavaScript/TypeScript cdk-appconfig

I don't have time, show me how this works

Source

"dependencies": {
    ...
    "cdk-appconfig": "*", // choose specific version 
    ...
  },
import { StackProps, Stack, App } from 'aws-cdk-lib';
import { SimpleAppConfig } from 'cdk-appconfig';
import { Construct } from 'constructs';


/**
 * Demo stack for {@link SimpleAppConfig}.
 */
export class SimpleAppConfigDemoStack extends Stack {
    /**
       * The {@link SimpleAppConfig} construct.
       */
    public readonly simpleAppConfig: SimpleAppConfig;

    constructor(scope: Construct, id: string, props: StackProps = {}) {
        super(scope, id, props);

        // Everything below is customizable, so use it as needed.
        this.simpleAppConfig = new SimpleAppConfig(this, 'SimpleAppConfig', {
            applicationName: 'MyAppConfigAppName',
            applicationEnvironment: 'MyEnvironment',
            configurationProfileName: 'MyConfigProfileName',
            // see {@link SimpleAppConfig#ConfigurationContent}, this is pretty generic.
            configurationContent: {
                MyStringKey: 'MyValue',
                MyBooleanKey: true,
                MyNumberKey: 123,
                MyCompositeKey: {
                    MyStringKey: 'MyValue',
                    MyBooleanKey: true,
                    MyNumberKey: 123,
                },
                MyArrayKey: [
                    {
                        MyStringKey: 'MyValue1',
                        MyBooleanKey: true,
                        MyNumberKey: 123,
                    },
                    {
                        MyStringKey: 'MyValue2',
                        MyBooleanKey: false,
                        MyNumberKey: 456,
                    },
                ],
            },
        });
    }
}

Application

Configuration Profile

Freeform Configuration

Package Sidebar

Install

npm i cdk-appconfig

Weekly Downloads

2

Version

0.0.1-beta.27

License

Apache-2.0

Unpacked Size

531 kB

Total Files

17

Last publish

Collaborators

  • joenonexotic