- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 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/
我尝试在 TemplateBody 部分中传递 RegionName,但收到错误“模板格式错误:模板的资源 block 中未解析的资源依赖项 [RegionName]”。 这是我正在使用的 yaml
我正在尝试将 aws cloudformation update-stack 与 --cli-input-json 一起使用,但我也想要 "TemplateBody":"[。 ..]" 值指向一个文件
我是一名优秀的程序员,十分优秀!