You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aws field in debug config is passed to SAM as environment vars (#1145)
The `aws` field in our `direct-invoke` launch configs now pass AWS credentials and regions to the SAM debug session. This includes passing active session tokens. These credentials and region info will be available to the debugged app, allowing the use of AWS SDK calls.
"AWS.configuration.description.awssam.debug.credentials": "The AWS credential id to use during the invocation.",
72
-
"AWS.configuration.description.awssam.debug.region": "The AWS region to use during the invocation.",
71
+
"AWS.configuration.description.awssam.debug.credentials": "The AWS credential type and ID to use during the invocation. Example: credential profile \"default\" would be entered as `profile:default`.",
72
+
"AWS.configuration.description.awssam.debug.region": "AWS region to use during the invocation.",
73
73
"AWS.configuration.description.awssam.debug.event": "The payload to pass to the lambda invocation.\n Must specify one of 'json' or 'path'.",
74
74
"AWS.configuration.description.awssam.debug.event.json": "A JSON document to use as the event payload",
75
75
"AWS.configuration.description.awssam.debug.event.path": "The path to a file to use as the event payload",
0 commit comments