Skip to content

Commit

Permalink
Merge pull request #415 from mumoshu/fix-duplicate-tags
Browse files Browse the repository at this point in the history
fix duplicate tags set via --tags
  • Loading branch information
errordeveloper authored Jan 10, 2019
2 parents 7ae0c35 + b1c2915 commit cb3809a
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 cb3809a

Please sign in to comment.