hardillb’s avatarhardillb’s Twitter Archive—№ 15,057

    1. @AWS I keep getting emails saying I have lambda running on Node 6.0 and it's EOL. I've double checked and I can't find any. It would be INCREDIBLY useful to include a link to or at least mention which and which region the one's you think are a problem are in the email
  1. …in reply to @hardillb
    @AWS Also worth pointing out that the command you offer to list them only lists your current default region.
    1. …in reply to @hardillb
      @AWS for r in aws ec2 describe-regions --output text | cut -f3; do echo $r; aws --region $r lambda list-functions --query="Functions[?Runtime=='nodejs6.10']" | jq '.[] | .FunctionName, .Runtime'; done