无服务器yml分配S3“数组”变量而不是多个配置值

时间:2019-06-24 10:27:57

标签: javascript node.js serverless-framework serverless aws-serverless

我在使用的无服务器插件中有一个配置值,该配置值需要多个条目(见下文):

-name: 'test'
  samples:
    - string example one
    - string example two
    - etc etc etc

我希望能够从外部某个地方读取信息,而不是定义每个示例条目,因此我可以自动添加新值。我知道您可以定义S3变量,但是有什么方法可以在S3中为样本配置值提供一些数组数据?所以看起来可能像这样:

-name: 'test
  samples: ${path-to-array-or-s3-bucket}

数组:

['string example one', 'string example two', 'etc etc etc']

或者,还是一种基于名称键将值附加到node.js中的serverless.yml的方法?

0 个答案:

没有答案