AWS SAM FindInMap 未填充变量
AWS SAM FindInMap Not Populating Variable
我正在尝试使用 !FindInMap 内部函数获取一个简单的 SAM 模板来填充环境变量 "dynamically"。我遵循了许多示例,包括 AWS 的文档,但没有任何运气。由于某种原因,即使一切看起来都是正确的,该函数也不会使用它来填充环境变量。它只会将变量设置为空字符串。
您可以从下面的代码中看到我在其中使用了一个 !Ref 函数,但是我尝试过对函数的参数进行硬编码,但没有成功。您还会注意到该函数在 Global
部分中,您可能认为它不起作用,因为它在那里并且没有函数环境,但我已经尝试过这两个函数,但它们都不起作用。您还会注意到我正在填充一个名为 STAGE
的环境变量,它工作正常并将其设置为 "local"
.
我正在通过 运行 sam start local-api
测试函数并在响应中输出环境变量。
任何建议都会很有帮助。
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: "Test Server"
Parameters:
Environment:
Type: String
Default: local
AllowedValues:
- local
- test
- prod
Mappings:
EnvParams:
local:
stage: "local"
databaseUrl: "mongodb://localhost:32768/test"
Globals:
Function:
Timeout: 500
Runtime: nodejs8.10
Environment:
Variables:
STAGE: !Ref Environment
DB_URL: !FindInMap [EnvParams, !Ref Environment, databaseUrl]
Resources:
ArticlesGetFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: src/articles/
Handler: index.getById
Events:
HelloWorld:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /api/article/
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
看起来 !FindInMap
还不支持本地调试。这是相关的 GitHub 问题:
https://github.com/awslabs/aws-sam-cli/issues/476
要在 SAM CLI 中设置和测试环境变量,您可以改用 --env-vars
选项。 !FindInMap
在通过 CloudFormation 部署时也受支持,您可以通过部署一个简单的 Lambda 函数和 运行 针对它的测试查询来测试此功能。
因为这个我有类似的错误:
!FindInMap [EnvMap, !Ref Stage, dbpass] - correct
!FindInMap [EnvMap, !Ref Stage, dbpass] - error
我正在尝试使用 !FindInMap 内部函数获取一个简单的 SAM 模板来填充环境变量 "dynamically"。我遵循了许多示例,包括 AWS 的文档,但没有任何运气。由于某种原因,即使一切看起来都是正确的,该函数也不会使用它来填充环境变量。它只会将变量设置为空字符串。
您可以从下面的代码中看到我在其中使用了一个 !Ref 函数,但是我尝试过对函数的参数进行硬编码,但没有成功。您还会注意到该函数在 Global
部分中,您可能认为它不起作用,因为它在那里并且没有函数环境,但我已经尝试过这两个函数,但它们都不起作用。您还会注意到我正在填充一个名为 STAGE
的环境变量,它工作正常并将其设置为 "local"
.
我正在通过 运行 sam start local-api
测试函数并在响应中输出环境变量。
任何建议都会很有帮助。
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: "Test Server"
Parameters:
Environment:
Type: String
Default: local
AllowedValues:
- local
- test
- prod
Mappings:
EnvParams:
local:
stage: "local"
databaseUrl: "mongodb://localhost:32768/test"
Globals:
Function:
Timeout: 500
Runtime: nodejs8.10
Environment:
Variables:
STAGE: !Ref Environment
DB_URL: !FindInMap [EnvParams, !Ref Environment, databaseUrl]
Resources:
ArticlesGetFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: src/articles/
Handler: index.getById
Events:
HelloWorld:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /api/article/
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
看起来 !FindInMap
还不支持本地调试。这是相关的 GitHub 问题:
https://github.com/awslabs/aws-sam-cli/issues/476
要在 SAM CLI 中设置和测试环境变量,您可以改用 --env-vars
选项。 !FindInMap
在通过 CloudFormation 部署时也受支持,您可以通过部署一个简单的 Lambda 函数和 运行 针对它的测试查询来测试此功能。
因为这个我有类似的错误:
!FindInMap [EnvMap, !Ref Stage, dbpass] - correct
!FindInMap [EnvMap, !Ref Stage, dbpass] - error