访问 aws_eks_node_group 创建的 aws_autoscaling_group 组

Access aws_autoscaling_group group created by aws_eks_node_group

一旦我们在 terraform 中创建 aws_eks_node_group 资源,就会自动创建一个自动缩放组。我想使用创建的并修改它

我想在自动缩放组

中添加最大实例生命周期

不胜感激!

您可以获得name of the ASG, and once you have the name you can get all further details of it using aws_autoscaling_group个数据源。

但是您无法修改,因为数据源是不可变的。您必须将 local-exec 与 AWS CLI 一起使用才能对其进行任何更改。

通常您会使用 scaling_config 来更改 aws_eks_node_group ASG 的设置。