我在这里关注自述文件:https://github.com/awslabs/aws-sam-local
我有一个用python 3.6编写的lambda,它类似于helloworld示例:https://github.com/awslabs/aws-sam-local/tree/develop/samples/hello-world/python
template.yml看起来像这样:
AWSTemplateFormatVersion : '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: MyFunction1 API
Resources:
MyFunction1:
Type: AWS::Serverless::Function
Properties:
FunctionName: MyFunction1
Handler: lambda_module.lambda_handler
Runtime: python3.6
CodeUri: lambda.zip
MemorySize: 128
Timeout: 10
Policies:
-AWSLamdbaBasicExecutionRole
Events:
BingLambdaEndpoint:
Type: Api
Properties:
Path: MyFunction1/search
Method: get
我在lambda中有环境变量但在启动时无法连接它们。文档说我可以创建一个environments.json文件并在invoke命令上附加以下内容:使用--env-vars invoke的参数
我的环境文件看起来像示例,我收到一个错误:
Unable to find environment variable: api_key
environment.json看起来像这样:
{
"MyFunction1": {
"api_key": "123456789",
"BUCKET_NAME": "testBucket"
}
}
我运行的命令是这样的:
sam local invoke MyFunction1 --env-vars environment_variables.json -e event.json
任何人都可以提供额外的见解吗?
答案 0 :(得分:19)
您希望以这种方式与SAM Local一起使用的任何环境变量都需要存在于SAM模板中。来自this GitHub issue:
... SAM Local仅解析SAM模板中定义的环境变量。
在模板中,您不能提供任何值,空字符串或选择合理的默认值。
模板的一部分,包括环境变量:
Resources:
MyFunction1:
Type: 'AWS::Serverless::Function'
Properties:
.....
Environment:
Variables:
api_key:
BUCKET_NAME:
您可以将环境变量文件视为覆盖模板“知道”的环境变量的机制。它不能作为将任意环境变量注入本地运行时的机制。
答案 1 :(得分:1)
确保变量在template.yml中声明。配置文件会覆盖变量,但在原始模板中不存在变量时不会创建变量。
答案 2 :(得分:0)
模板文件
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Globals:
Function:
Timeout: 3
Parameters:
SomeVar:
Type: String
Description: My SomeVar
Default: default value
Resources:
HelloWorldFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: hello-world/
Handler: app.lambdaHandler
Runtime: nodejs12.x
Environment:
Variables:
SOME_VAR: !Ref SomeVar
Events:
HelloWorld:
Type: Api
Properties:
Path: /hello
Method: get
Outputs:
HelloWorldApi:
Description: "API Gateway endpoint URL for Prod stage for Hello World function"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/hello/"
HelloWorldFunction:
Description: "Hello World Lambda Function ARN"
Value: !GetAtt HelloWorldFunction.Arn
HelloWorldFunctionIamRole:
Description: "Implicit IAM Role created for Hello World function"
Value: !GetAtt HelloWorldFunctionRole.Arn
来自https://github.com/awslabs/aws-sam-cli/issues/1163#issuecomment-557874976
然后输入代码
console.log(process.env.SOME_VAR);
运行sam local start-api
时,它将打印default value
运行sam local start-api --parameter-overrides SomeVar=other_value
时,它将打印other_value
然后,如果您创建具有此内容的文件env.json
{ "PreviewsFunction": { "SOME_VAR": "123" } }
运行sam local start-api --env-vars env.json
时,它将打印123
p.s。它将以相同的方式与start-api/start-lambda/invoke
一起使用,但是看起来sam deploy
仅与--parameter-overrides SomeVar=other_value
一起使用,而没有--env-vars
答案 3 :(得分:0)
我遇到了同样的问题。当我跑
sam local start-api --env-vars env.json
env.json 中未被读取的值。为我解决问题的是在 env.json 中使用以下格式
“参数”:{ “PARAM_NAME”:“VALUE” }
其他格式对我不起作用:
{ "function": { "PARAM_NAME": "VALUE" } }