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.
- package/.vitepress/config.mts +1 -1
- package/README.md +1 -0
- package/dist/extension/extension.zip +0 -0
- package/dist/infraDeploy.mjs +8 -2
- package/package.json +1 -1
package/.vitepress/config.mts
CHANGED
|
@@ -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
|
package/dist/infraDeploy.mjs
CHANGED
|
@@ -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
|
};
|