gpt4 book ai didi

javascript - 无服务器 - 如何动态添加从 javascript 文件生成的资源并将其与其他资源合并?

转载 作者:行者123 更新时间:2023-12-05 06:17:13 28 4
gpt4 key购买 nike

我想创建一个将 Cognito 资源部署到 AWS 的无服务器文件。我有一个 config.yml 文件,其中包含应在 Cognito 资源服务器中创建的所有范围。

config.yml

- name: scope1
description: Description of scope1
- name: scope2
description: Description of scope2

我想要完成的是为我们注册的每个范围动态生成一个 Cognito 应用程序客户端,并将这些范围添加到 Cognito 资源服务器(在我的例子中,Cognito 用户池和域名已经创建)。

为此,我尝试创建一个 javascript 文件来加载 config.yml 文件并生成两个变量:

  • userPoolClientList,其中包含 Cognito 应用客户端资源列表。
  • scopeList 表示应在 Cognito 资源服务器中注册的范围列表。

sls-template.js

const fs = require("fs");
const yaml = require("js-yaml");

const scopeList = yaml.safeLoad(fs.readFileSync("config.yml"));

module.exports = {
scopeList: function () {
return scopeList.map(({ name, description }) => ({
ScopeName: name,
ScopeDescription: description,
}));
},

userPoolClientList: function (serverless) {
const { cognitoUserPoolId } = serverless.service.custom;

const scopeResourceList = scopeList.map(({ name, description }) => ({
[`cognitoUserPoolClient-${name}`]: {
Type: "AWS::Cognito::UserPoolClient",
Properties: {
AllowedOAuthScopes: [`server/${name}`],
UserPoolId: cognitoUserPoolId,
},
DependsOn: "cognitoResourceServer",
},
}));

return Object.assign({}, ...scopeResourceList);
},
};

现在看起来它返回的正是我想要的(我已经测试过它并且效果很好)。

我的问题在于 serverless.yml 文件的实现以及如何将固定资源与动态生成的资源结合起来。

serverless.yml

resources:
Resources:
${file(sls-template.js):userPoolClientList}
cognitoResourceServer:
Type: AWS::Cognito::UserPoolResourceServer
Properties:
Identifier: server
Name: Server
Scopes: ${file(sls-template.js):scopeList}
UserPoolId: ${self:custom.cognitoUserPoolId}

这会引发错误,因为语法不正确。但是,当我尝试单独部署资源时(一次只是 cognitoResourceServer 资源,另一次是从 javascript 文件生成的变量),一切正常。

问题实际上在于我应该如何组合或合并这两个资源。

我一直在尝试很多不同的组合来尝试使其工作,但它总是给我一个无效的模板。

所以我想知道我尝试完成的任务是否可以在无服务器中实现,如果可以,我如何更改我的最终 serverless.yml 文件以使其工作。

非常感谢。

最佳答案

是的resource blocks can be merged .

我相信这应该可以做到:

resources:
- Resources: ${file(sls-template.js):userPoolClientList}
- Resources:
cognitoResourceServer:
Type: AWS::Cognito::UserPoolResourceServer
Properties:
Identifier: server
Name: Server
Scopes: ${file(sls-template.js):scopeList}
UserPoolId: ${self:custom.cognitoUserPoolId}

不能 100% 确定动态 block 是否需要生成 Resources 顶级 key ,或者是否可以像我在示例中所示的那样对其进行硬编码。

关于javascript - 无服务器 - 如何动态添加从 javascript 文件生成的资源并将其与其他资源合并?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61747619/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com