bland-actor-69047
10/11/2024, 3:50 PMmake([]foo, N)
creates a slice with N zero-initialized foo
. You probably need make([]foo, 0, N)
to create an empty slice with pre-reserved memory, or don't bother pre-reserving and just say var workerPrivateIps []pulumi.StringOutput
, the difference in a few nanoseconds won't matter.