Remember you do need to make the names of each res...
# golang
s
Remember you do need to make the names of each resource unique - so you probably want to assign them as being
fmt.Sprintf("base-name-%d", i)
where
i
is your loop enumerator
👍 1