Skip to content

Commit b3c05f1

Browse files
committed
add update_strategy to flatten
1 parent 51f7e24 commit b3c05f1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/service/eks/node_group.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,10 @@ func flattenNodegroupUpdateConfig(apiObject *types.NodegroupUpdateConfig) map[st
12481248
tfMap["max_unavailable_percentage"] = aws.ToInt32(v)
12491249
}
12501250

1251+
if apiObject.UpdateStrategy != "" {
1252+
tfMap["update_strategy"] = string(apiObject.UpdateStrategy)
1253+
}
1254+
12511255
return tfMap
12521256
}
12531257

0 commit comments

Comments
 (0)