0

我是 AWS 和 SAM 的新手,所以这可能是一个显而易见的问题,但我就是找不到答案。我正在尝试构建一个 SAM 模板,该模板允许用户注入一个参数,该参数将影响其中所有资源的名称。具体来说,可以传入一个“环境”参数,然后将其用于限定所有资源名称:

AWSTemplateFormatVersion: "2010-09-09"
Transform: "AWS::Serverless-2016-10-31"
Parameters:
  EnvironmentParameter:
    Type: "String"
    Default: "default"
Resources:
  GetTermsAndConditionsFunction:
    Type: "AWS::Serverless::Function"
    Properties:
      # TODO: prepend the environment somehow so I get "$ENVIRONMENT_MyFunction" instead
      FunctionName: "MyFunction"
      Handler: "..."
      ...

如何动态构建FunctionNameusing EnvironmentParameter

4

1 回答 1

2

所有 Cloudformation 功能也可在 SAM 模板中使用。所以你会使用这个Fn::Sub函数来替换你的 EnvironmentParameterFunctionName

FunctionName: !Sub "${EnvironmentParameter}_MyFunction"

链接以获取有关Fn::Sub功能的更多详细信息。

希望这可以帮助!

于 2018-07-03T09:46:49.590 回答