gpt4 book ai didi

amazon-web-services - CloudFormation - 动态生成描述

转载 作者:行者123 更新时间:2023-12-03 07:29:52 24 4
gpt4 key购买 nike

我有一个 CloudFormationScript,其定义如下:

{ "AWSTemplateFormatVersion": "2010-09-09", "Description": "My Cluster-GREEN", ...

我想通过我通过参数(蓝色/绿色)传递到 CFT 的参数动态生成上面的 -GREEN。我该怎么做?

最佳答案

根据官方文档here ,

The value for the description declaration must be a literal string that is between 0 and 1024 bytes in length. You cannot use a parameter or function to specify the description.

因此,您无法使用参数动态传递描述。

如果您使用 SDK,则有一个解决方法。由于 CFn 模板是 JSON,因此您可以在调用 createStack 方法之前将描述设置为您想要的任何值。

伪代码:

Map<String, Object> template = readTemplateFromResources();
template["description"] = "My Cluster-GREEN";

createStackRequest.setTemplateBody(template.toString());

希望这有帮助。

关于amazon-web-services - CloudFormation - 动态生成描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48644997/

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