gpt4 book ai didi

amazon-web-services - 云形成 : Template error: every Ref object must have a single String value

转载 作者:行者123 更新时间:2023-12-04 17:18:16 34 4
gpt4 key购买 nike

我正在尝试创建 CloudFormation 堆栈,但收到以下错误:

A client error (ValidationError) occurred when calling the CreateStack operation: Template error: every Ref object must have a single String value.

但是,当我 grep 模板查找 Ref 对象时,除了看起来像这样的单个查找之外,它们都是字符串

{
"Ref": {
"Fn::FindInMap": [
"InfraMap",
"SecurityGroups",
"NATSecurityGroup"
]
}
}

此引用的值为 "NATSecurityGroup": "sg-54e6be30", 这对我来说似乎没问题。

关于这个错误可能指的是什么还有其他想法吗?

最佳答案

"Ref": {
"Fn::FindInMap": [
"InfraMap",
"SecurityGroups",
"NATSecurityGroup"
]
}

这是不正确的,在这种情况下不需要 Ref,它引用的值是常量,而不是在创建堆栈期间创建的变量。

替换为

"Fn::FindInMap": [
"InfraMap",
"SecurityGroups",
"NATSecurityGroup"
]

解决了问题。

关于amazon-web-services - 云形成 : Template error: every Ref object must have a single String value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30090143/

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