Socket
Socket
Sign inDemoInstall

cdk-budibase

Package Overview
Dependencies
41
Maintainers
1
Versions
364
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cdk-budibase

Use AWS CDK to create budibase server


Version published
Weekly downloads
409
decreased by-16.7%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

NPM version PyPI version release

Downloads npm PyPI

Welcome to cdk-budibase

BudiBase is open source! is Build apps, forms, and workflows that perfectly fit your business - so you can move forward, faster. Best of all. Use AWS CDK to create budibase server. data store in efs

  • base resource:
    • vpc, ecs cluster, ecs service, efs

ref: https://medium.com/devops-techable/learn-how-to-use-the-efs-mount-point-in-your-ecs-cluster-running-fargate-with-aws-cdk-e5c9df435c8b

Architecture

Deploy cdk-budibase via example code.

# example cdk app diff.
npx aws-cdk@latest diff --app='npx ts-node src/integ.api.ts'

# example cdk app deploy.
npx aws-cdk@latest deploy --app='npx ts-node src/integ.api.ts'

# example cdk app destroy (in case you miss remove efs, you need to remove efs, and log group manually on aws console or via aws cli, sdk etc...).
npx aws-cdk@latest destroy --app='npx ts-node src/integ.api.ts'

Use Constructs Library in CDK APP.

import { BudiBaseBaseResource } from 'cdk-budibase';

const app = new App();
const env = {
  account: process.env.CDK_DEFAULT_ACCOUNT,
  region: process.env.CDK_DEFAULT_REGION,
};

const stack = new Stack(app, 'MyStack', { env });
new BudiBaseBaseResource(stack, 'BudiBaseBaseResource');

EFS

BudiBase

Keywords

FAQs

Last updated on 03 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc