@friggframework/devtools 2.0.0--canary.393.f4a61c1.0 → 2.0.0--canary.395.d07514c.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -353,34 +353,6 @@ const composeServerlessDefinition = (AppDefinition) => {
353
353
  };
354
354
  }
355
355
 
356
- // VPC Configuration based on App Definition
357
- if (AppDefinition.vpc?.enable === true) {
358
- // Create VPC config from App Definition
359
- const vpcConfig = {};
360
- if (AppDefinition.vpc.securityGroupIds) {
361
- vpcConfig.securityGroupIds = AppDefinition.vpc.securityGroupIds;
362
- }
363
- if (AppDefinition.vpc.subnetIds) {
364
- vpcConfig.subnetIds = AppDefinition.vpc.subnetIds;
365
- }
366
-
367
- // Set VPC config directly (can be overridden by serverless.yml)
368
- definition.provider.vpc = vpcConfig;
369
-
370
- // Add VPC-related IAM permissions
371
- definition.provider.iamRoleStatements.push({
372
- Effect: 'Allow',
373
- Action: [
374
- 'ec2:CreateNetworkInterface',
375
- 'ec2:DescribeNetworkInterfaces',
376
- 'ec2:DeleteNetworkInterface',
377
- 'ec2:AttachNetworkInterface',
378
- 'ec2:DetachNetworkInterface'
379
- ],
380
- Resource: '*'
381
- });
382
- }
383
-
384
356
  // Add integration-specific functions and resources
385
357
  for (const integration of AppDefinition.integrations) {
386
358
  const integrationName = integration.Definition.name;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@friggframework/devtools",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0--canary.393.f4a61c1.0",
4
+ "version": "2.0.0--canary.395.d07514c.0",
5
5
  "dependencies": {
6
6
  "@babel/eslint-parser": "^7.18.9",
7
7
  "@babel/parser": "^7.25.3",
8
8
  "@babel/traverse": "^7.25.3",
9
- "@friggframework/test": "2.0.0--canary.393.f4a61c1.0",
9
+ "@friggframework/test": "2.0.0--canary.395.d07514c.0",
10
10
  "@hapi/boom": "^10.0.1",
11
11
  "@inquirer/prompts": "^5.3.8",
12
12
  "axios": "^1.7.2",
@@ -27,8 +27,8 @@
27
27
  "serverless-http": "^2.7.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@friggframework/eslint-config": "2.0.0--canary.393.f4a61c1.0",
31
- "@friggframework/prettier-config": "2.0.0--canary.393.f4a61c1.0",
30
+ "@friggframework/eslint-config": "2.0.0--canary.395.d07514c.0",
31
+ "@friggframework/prettier-config": "2.0.0--canary.395.d07514c.0",
32
32
  "prettier": "^2.7.1",
33
33
  "serverless": "3.39.0",
34
34
  "serverless-dotenv-plugin": "^6.0.0",
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "f4a61c18c52e1a80a0b1e5bb4aa3eb6faefbf953"
63
+ "gitHead": "d07514cc9f891cbe6a53bea70322bf4c613b3058"
64
64
  }