Hey guys, what does this error mean? `error: Dupl...
# golang
d
Hey guys, what does this error mean?
error: Duplicate resource URN
w
Every resource must have a unique name. Most likely, you created two resources of the same type with the same name (first argument to the resource constructor).
d
Thanks. Pretty sure it was different but the way I structured my tests had the pulumi.Run() being called multiple times. Pulling that up to only run once seems to have resolved the resource name issue.