CDK construct library to generate serverless Apache APISIX workload on AWS Fargate
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'),
} )
cdk deploy \
-c ADMIN_KEY_ADMIN=*********** \
-c ADMIN_KEY_VIEWER=*********** \
-c DASHBOARD_ADMIN_PASSWORD=*********** \
-c DASHBOARD_USER_PASSWORD=***********
new Apisix(stack, 'apisix-demo', {
apisixContainer: ContainerImage.fromAsset(path.join(__dirname, '../apisix_container')),
dashboardContainer: ContainerImage.fromAsset(path.join(__dirname, '../apisix_dashboard')),
});