@friggframework/devtools 2.0.0--canary.398.bdb6d27.0 → 2.0.0--canary.398.cea1d3f.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.
@@ -136,6 +136,7 @@ Consider separate policies for different environments:
136
136
  3. **"ssm:GetParameter" error** → Enable SSM in your policy
137
137
  4. **Lambda VPC errors** → Ensure VPC permissions are enabled
138
138
  5. **"lambda:DeleteEventSourceMapping" error** → Update to latest policy (includes EventSourceMapping permissions)
139
+ 6. **"ec2:DeleteVpcEndpoints" error** → Update IAM policy to use `ec2:DeleteVpcEndpoints` (plural) instead of `ec2:DeleteVpcEndpoint`
139
140
 
140
141
  ### Validation
141
142
  Test your policy by deploying a simple Frigg app:
@@ -270,7 +270,7 @@ Resources:
270
270
  Effect: Allow
271
271
  Action:
272
272
  - 'ec2:CreateVpcEndpoint'
273
- - 'ec2:DeleteVpcEndpoint'
273
+ - 'ec2:DeleteVpcEndpoints'
274
274
  - 'ec2:DescribeVpcEndpoints'
275
275
  - 'ec2:ModifyVpcEndpoint'
276
276
  - 'ec2:CreateNatGateway'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/devtools",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "2.0.0--canary.398.bdb6d27.0",
4
+ "version": "2.0.0--canary.398.cea1d3f.0",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-ec2": "^3.835.0",
7
7
  "@aws-sdk/client-kms": "^3.835.0",
@@ -9,7 +9,7 @@
9
9
  "@babel/eslint-parser": "^7.18.9",
10
10
  "@babel/parser": "^7.25.3",
11
11
  "@babel/traverse": "^7.25.3",
12
- "@friggframework/test": "2.0.0--canary.398.bdb6d27.0",
12
+ "@friggframework/test": "2.0.0--canary.398.cea1d3f.0",
13
13
  "@hapi/boom": "^10.0.1",
14
14
  "@inquirer/prompts": "^5.3.8",
15
15
  "axios": "^1.7.2",
@@ -31,8 +31,8 @@
31
31
  "serverless-http": "^2.7.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@friggframework/eslint-config": "2.0.0--canary.398.bdb6d27.0",
35
- "@friggframework/prettier-config": "2.0.0--canary.398.bdb6d27.0",
34
+ "@friggframework/eslint-config": "2.0.0--canary.398.cea1d3f.0",
35
+ "@friggframework/prettier-config": "2.0.0--canary.398.cea1d3f.0",
36
36
  "prettier": "^2.7.1",
37
37
  "serverless": "3.39.0",
38
38
  "serverless-dotenv-plugin": "^6.0.0",
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "bdb6d27afba025fd602994dad9b2ab86f49a6556"
67
+ "gitHead": "cea1d3fb041c85f7607824c3dfb7d566732acd78"
68
68
  }