
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@exogee/graphweaver-cdk
Advanced tools
This package simplifies the deployment of your Graphweaver GraphQL applications on AWS, leveraging the AWS CDK (Cloud Development Kit). It streamlines infrastructure provisioning and configuration for your GraphQL backend and admin UI.
Install the package:
pnpm install @exogee/graphweaver-cdk
Create Your CDK App:
import { App, Stack } from 'aws-cdk-lib';
import { GraphweaverApp } from '@exogee/graphweaver-cdk';
import { Vpc, SecurityGroup, Port} from 'aws-cdk-lib/aws-ec2';
const app = new App();
const stack = new Stack(app, 'GraphweaverStack');
const vpc = new Vpc(stack, 'GraphweaverVpc'); 
// Create Security Group for the Database
const dbSecurityGroup = new SecurityGroup(this, 'DbSecurityGroup', {
    vpc,
    description: 'Security group for the database',
});
// Security Group for GraphQL Lambda
const graphqlSecurityGroup = new SecurityGroup(this, 'GraphqlSecurityGroup', {
    vpc,
    description: 'Security group for GraphQL Lambda',
});
// Allow inbound traffic only from the GraphQL Lambda
dbSecurityGroup.addIngressRule(
    graphqlSecurityGroup,
    Port.tcp(5432),
    'Allow access from Lambda to RDS instance'
);
// Create Security Group for the Secrets Manager endpoint
const secretManagerSecurityGroup = new SecurityGroup(this, 'SecretsManagerSecurityGroup', {
    vpc: this.vpc,
    description: 'Security group for the Secrets Manager endpoint',
});
// Allow inbound traffic only from the GraphQL Lambda
secretManagerSecurityGroup.addIngressRule(
    this.graphqlSecurityGroup,
    Port.tcp(443),
    'Allow access from Lambda to Secrets Manager endpoint'
);
// Add VPC endpoint for Secrets Manager
this.vpc.addInterfaceEndpoint('vpc-secrets-manager-interface-endpoint', {
    service: ec2.InterfaceVpcEndpointAwsService.SECRETS_MANAGER,
    privateDnsEnabled: true,
    securityGroups: [secretManagerSecurityGroup],
});
const config: GraphweaverAppConfig = {
  name: 'my-graphweaver-app',
  database: { /* ... your database config ... */ },
  adminUI: { /* ... your admin UI config ... */ },
  api: { /* ... your API config ... */ }
  network: {
    vpc,
    graphqlSecurityGroup,
    dbSecurityGroup
  }
};
new GraphweaverApp(stack, 'GraphweaverApp', config);
Modify the GraphweaverAppConfig object to match your application's requirements.
Provide database credentials, certificates, domain names, environment variables, and other relevant settings.
cdk deploy
FAQs
Deploy Graphweaver to AWS
The npm package @exogee/graphweaver-cdk receives a total of 178 weekly downloads. As such, @exogee/graphweaver-cdk popularity was classified as not popular.
We found that @exogee/graphweaver-cdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.