什么" DependsOn":[]在cloudformation中意味着什么

时间:2017-12-04 11:35:15

标签: amazon-web-services aws-lambda amazon-cloudformation

我正在使用AWS提供的模板,该模板在嵌套堆栈调用中使用" DependsOn":[]。 我知道依赖可以有一个列表依赖,但从来没有碰到过这个。

BucketsStack": {
        "DependsOn": [],
        "Properties": {
            "Parameters": {
                "CreateDemonstration": {
                    "Ref": "CreateDemonstration"
                },

1 个答案:

答案 0 :(得分:1)

删除它,因为它是一个空数组,所以没用。

确实DependsOn会影响资源创建的顺序。

以下是official documentation

  

使用DependsOn属性,您可以指定创建一个   特定资源跟随另一个。添加DependsOn属性时   对于资源,该资源仅在创建之后创建   在DependsOn属性中指定的资源。