terraform autoscaling group摧毁超时

时间:2017-05-21 02:11:33

标签: amazon-web-services autoscaling terraform

有没有办法更改terraform默认超时?

例如在terraform apply上我经常超时尝试销毁自动缩放组:

module.foo.aws_autoscaling_group.bar (deposed #0): Still destroying... (10m0s elapsed)
Error applying plan:

1 error(s) occurred:

 * aws_autoscaling_group.bar (deposed #0): group still has 1 instances

如果我重新运行terraform apply,它会起作用。似乎超时是10分钟 - 我希望将时间加倍,以便可靠地完成。或者,有没有办法让自动缩放组更快删除?

2 个答案:

答案 0 :(得分:4)

您可以为terraform

内的特定资源添加超时
 timeouts {
    create = "60m"
    delete = "2h"
  }

https://www.terraform.io/docs/configuration/resources.html

答案 1 :(得分:0)

当我尝试使用 Excel.Col.1 Excel.Col.2 1 A 24 2 B 5 3 C 53 删除autoscaling-group时,我遇到了同样的问题 我通过在资源创建部分添加以下行来解决该问题:

terraform destroy