我添加了CloudFormation设置文件vpc.yml
和front.yml
,导出vpc.yml
中的一些值并导入它们。
我运行了以下命令,但它不起作用。
$ aws cloudformation validate-template --template-body file://front.yml
An error occurred (ValidationError) when calling the ValidateTemplate operation: Template format error: Unresolved resource dependencies [VPCGatewayAttach] in the Resources block of the template
从其他人导入值的堆栈的有效命令是什么?
答案 0 :(得分:0)
您获得的错误是因为您在其中一个资源中有dependsOn
属性,指定了对VPCGatewayAttach
的依赖,但您的cft中不存在VPCGatewayAttach
。