サーバーレス開発部@大阪の岩田です。 Pythonで開発しているLambdaをデバッグするためにSAM CLIを使ったリモートデバッグを試したので、その時の手順をまとめます。 雛形作成 まずはアプリの雛形を作成します。 SAMテンプレートは下記のように記述しました。 AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: > python remote debug Globals: Function: Timeout: 300 Resources: HelloWorldFunction: Type: AWS::Serverless::Function Properties: Handler: app.lambda_handler Runtime: python3.6