Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

cdk-apisix

Package Overview
Dependencies
Maintainers
1
Versions
302
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cdk-apisix

CDK construct library to generate serverless Apache APISIX workload on AWS Fargate.

latest
Source
npmnpm
Version
0.0.303
Version published
Weekly downloads
30
Maintainers
1
Weekly downloads
 
Created
Source

NPM version PyPI version Release

cdk-apisix

CDK construct library to generate serverless Apache APISIX workload on AWS Fargate

sample

import { Apisix } from 'cdk-apisix';

// create a standard apisix service
const apisix = new Apisix(stack, 'apisix-demo')

// create a sample webservice with apisix in the same Amazon ECS cluster
apisix.createWebService('flask', {
  environment: {
    PLATFORM: 'Apache APISIX on AWS Fargate'
  },
  image: ContainerImage.fromRegistry('public.ecr.aws/pahudnet/flask-docker-sample'),
} )

deploy with required context variables

cdk deploy \
-c ADMIN_KEY_ADMIN=*********** \
-c ADMIN_KEY_VIEWER=*********** \
-c DASHBOARD_ADMIN_PASSWORD=*********** \
-c DASHBOARD_USER_PASSWORD=***********

custom container image from local assets

new Apisix(stack, 'apisix-demo', {
  apisixContainer: ContainerImage.fromAsset(path.join(__dirname, '../apisix_container')),
  dashboardContainer: ContainerImage.fromAsset(path.join(__dirname, '../apisix_dashboard')),
});

Keywords

cdk

FAQs

Package last updated on 05 Dec 2021

Did you know?

Socket

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