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
Describe the bug
When I attempt to send an STS message from a Lambda function in a VPC, I encounter a timeout issue. I tried using the VPC Link, but it didn’t work.
Describe the bug
Same as #4301
Describe the bug
When I attempt to send an STS message from a Lambda function in a VPC, I encounter a timeout issue. I tried using the VPC Link, but it didn’t work.
This solution resolved the problem:
assumed_role = boto3.client( "sts", endpoint_url=f"https://sts.{os.environ['AWS_REGION']}.amazonaws.com", )
Expected Behavior
Successfully executed boto3's sts.get_caller_identity().
Current Behavior
Received a timeout error.
Reproduction Steps
Create a VPC without internet access, add an STS interface endpoint, and then attempt to call boto3's sts.get_caller_identity().
The text was updated successfully, but these errors were encountered: