Loren Gordon

Results 184 comments of Loren Gordon

Fwiw, I've been using and love @benkehoe's utility https://github.com/benkehoe/aws-assume-role-lib for this kind of assume-role functionality in lambda funtions. Lot of good lessons there.

I wish the lambda runtimes would update their boto3/botocore libraries more often, and make it less necessary to include these in the package. Unfortunately, the versions are often quite out-of-date....

But another good reason to package them anyway is to ensure we are using the same versions we test against...

We don't use the original `boto` v1. The boto3 and botocore versions we use are a requirement of our lambda code, not this library. The packaging logic for the lambda...