
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
cdk-apisix
Advanced tools
CDK construct library to generate serverless Apache APISIX workload on AWS Fargate.
CDK construct library to generate serverless Apache APISIX workload on AWS Fargate

# Example automatically generated from non-compiling source. May contain errors.
from cdk_apisix import Apisix
# create a standard apisix service
apisix = Apisix(stack, "apisix-demo")
# create a sample webservice with apisix in the same Amazon ECS cluster
apisix.create_web_service("flask",
environment={
"PLATFORM": "Apache APISIX on AWS Fargate"
},
image=ContainerImage.from_registry("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=***********
# Example automatically generated from non-compiling source. May contain errors.
Apisix(stack, "apisix-demo",
apisix_container=ContainerImage.from_asset(path.join(__dirname, "../apisix_container")),
dashboard_container=ContainerImage.from_asset(path.join(__dirname, "../apisix_dashboard"))
)
FAQs
CDK construct library to generate serverless Apache APISIX workload on AWS Fargate.
We found that cdk-apisix demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.