atom-cdk-serverless-airflow
TypeScript icon, indicating that this package has built-in type declarations

0.0.0 • Public • Published

Build NPM version PyPI version construct hub

CDK Serverless Airflow

CDK construct library that allows you to create Apache Airflow on AWS in TypeScript or Python

Architecture

architecture

Sample

import * as cdk from '@aws-cdk/core';
import * as airflow from 'cdk-serverless-airflow';

const app = new cdk.App();
const env = {
  region: process.env.CDK_DEFAULT_REGION,
  account: process.env.CDK_DEFAULT_ACCOUNT,
};
const stack = new cdk.Stack(app, 'airflow-stack', {
  env,
});
new airflow.Airflow(stack, 'Airflow');

Airflow Dashboard

Default Credential: user/bitnami

airflow-dashboard

AWS China Regions

AWS China regions cn-north-1 and cn-northwest-1 are supported by this Library.

License

This project is licensed under the Apache-2.0 License.

/atom-cdk-serverless-airflow/

    Package Sidebar

    Install

    npm i atom-cdk-serverless-airflow

    Weekly Downloads

    1

    Version

    0.0.0

    License

    Apache-2.0

    Unpacked Size

    884 kB

    Total Files

    27

    Last publish

    Collaborators

    • hongjun.gu