0

对流层模块版本:2.6.2。

Python脚本:

import troposphere.ecs as ecs
from ecs import *
...
template.add_resource(ecs.Cluster(
    "Cluster",
    CapacityProviders=["FARGATE", "FARGATE_SPOT"]
))
...

为什么在运行创建模板的脚本时出现此错误?

AWS::ECS::Cluster object does not support attribute CapacityProviders
4

1 回答 1

0

我相信它不支持在2.6.2. 更新到2.6.3应该可以解决您的问题

于 2020-12-12T11:19:24.697 回答