gpt4 book ai didi

aws-cloudformation - 使用 --cli-input-json 和 TemplateBody 的 cloudformation 更新堆栈

转载 作者:行者123 更新时间:2023-12-03 07:26:09 25 4
gpt4 key购买 nike

我正在尝试将 aws cloudformation update-stack--cli-input-json 一起使用,但我也想要 "TemplateBody":"[。 ..]" 值指向一个文件,就像我可以使用 --template-body file://template.yml 那样。

这可能吗?

谢谢!

最佳答案

不,不支持。

您将收到此错误消息:

An error occurred (ValidationError) when calling the UpdateStack operation: Template format error: unsupported structure.

首先,您的模板正文必须是 cli-input-json 中的 JSON,所以假设您有 template.json

当您通过命令行提供 --template-body 时,CLI 会意识到您正在提供一个要读取的文件,读取该文件,然后将 JSON 内容提供给 API。

但是,当您使用cli-input-json时,CLI 按字面解析它1 并将 file://template.json 识别为不在 CloudFormation template format 中的无效 JSON。 .


1 如果您使用 --debug 运行命令,您可以看到这一点(这是 CreateStack 但同样的概念适用) :

2023-09-30 11:29:17,259 - MainThread - botocore.endpoint - DEBUG - Making request for OperationModel(name=CreateStack) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'Content-Type': 'xxx', 'User-Agent': 'xxx'}, 'body': {'Action': 'CreateStack', 'Version': '2010-05-15', 'StackName': 'xxx', 'TemplateBody': 'file://template.json'}, 'url': 'xxx', 'context': {'client_region': 'xxx', 'client_config': <botocore.config.Config object at 0x10fa0a650>, 'has_streaming_input': False, 'auth_type': None}}

关于aws-cloudformation - 使用 --cli-input-json 和 TemplateBody 的 cloudformation 更新堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77205632/

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