AWS Lambda設定で環境変数を設定する時の注意

AWSコンソールから Lambdaを設定する作業で、
環境変数に、AWS_REGION というのをキーに、使用 Region をセットしようとしら、、

Lambda was unable to configure your environment variables because the environment variables
you have provided contains reserved keys that are currently not supported for modification.
Reserved keys used in this request: AWS_REGION, AWS_ACCESS_KEY

と怒られました。
Lambda was unable to configure your environment variables

Lambda functions come with a set of default environment variables.
These environment variable names are reserved, and users will not be able to overwrite them.

なんでも、、Lambda関数には、デフォルトの環境変数があって、
これらの環境変数名は予約されていて、
overwrite 上書きできないだと。。。

使用している serverless.yml を確認しないとダメなんだそうだ。。。

https://www.serverless.com/