lambda-live-debugger 1.7.1 → 1.7.2

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.
@@ -92,7 +92,7 @@ export default defineConfig({
92
92
  link: '#serverless-framework-v3-sls',
93
93
  },
94
94
  { text: 'SAM', link: '#aws-serverless-application-model-sam' },
95
- { text: 'Terraform', link: '#terraform' },
95
+ { text: 'Terraform and OpenTofu', link: '#terraform-and-opentofu' },
96
96
  { text: 'Custom Setup', link: '#custom-setup' },
97
97
  ],
98
98
  },
package/README.md CHANGED
@@ -331,6 +331,7 @@ If you have a new feature idea, please create and issue.
331
331
 
332
332
  (alphabetical)
333
333
 
334
+ - [Ben Moses](https://github.com/benjymoses)
334
335
  - [Kristian Dreher](https://www.linkedin.com/in/kristiandreher)
335
336
  - [Roger Chi](https://rogerchi.com/)
336
337
  - [Sebastian / avocadomaster](https://github.com/avocadomaster)
Binary file
@@ -21,9 +21,15 @@ const policyDocument = {
21
21
  Version: '2012-10-17',
22
22
  Statement: [
23
23
  {
24
- Action: 'iot:*',
25
- Resource: '*',
26
24
  Effect: 'Allow',
25
+ Action: [
26
+ 'iot:DescribeEndpoint',
27
+ 'iot:Connect',
28
+ 'iot:Publish',
29
+ 'iot:Subscribe',
30
+ 'iot:Receive',
31
+ ],
32
+ Resource: '*',
27
33
  },
28
34
  ],
29
35
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lambda-live-debugger",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "type": "module",
5
5
  "description": "Debug Lambda functions locally like it is running in the cloud",
6
6
  "repository": {