I'm creating multiple instances (via for loop) of ...
# python
a
I'm creating multiple instances (via for loop) of a ManagedNodeGroup. Is there some way of parallelizing it? Current behaviour is linear (expected) but takes long to deploy many of them.
c
Can you set the scaling_config so you don’t have to do it in a loop?
a
Not possible, the nodegroups are different. They are not reliant on each other though.
g
This makes me wonder, if terraform loops are async by defualt?