Skip to content

Commit

Permalink
fix duplicate tags set via --tags
Browse files Browse the repository at this point in the history
Fixes #413
  • Loading branch information
mumoshu committed Jan 10, 2019
1 parent 3b8a4d9 commit b1c2915
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/cfn/manager/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ func (c *StackCollection) CreateCluster(errs chan error, _ interface{}) error {
return err
}

return c.CreateStack(name, stack, c.spec.Metadata.Tags, nil, errs)
// Unlike with `CreateNodeGroup`, all tags are already set for the cluster stack
return c.CreateStack(name, stack, nil, nil, errs)
}

// DeleteCluster deletes the cluster
Expand Down

0 comments on commit b1c2915

Please sign in to comment.