Skip to content

Commit

Permalink
Write stack service account file to right path
Browse files Browse the repository at this point in the history
This was going to the old setup folder, when it should be in `bootstrap/stacks`.
  • Loading branch information
michaeljguarino committed Oct 1, 2024
1 parent 5c91857 commit d16d4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/up/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (ctx *Context) Generate() (dir string, err error) {
func (ctx *Context) afterSetup() error {
prov := ctx.Provider.Name()
overwrites := []templatePair{
{from: ctx.path(fmt.Sprintf("templates/setup/stacks/%s.yaml", prov)), to: "setup/stacks/serviceaccount.yaml"},
{from: ctx.path(fmt.Sprintf("templates/setup/stacks/%s.yaml", prov)), to: "bootstrap/stacks/serviceaccount.yaml"},
}

ctx.Delims = nil
Expand Down

0 comments on commit d16d4a7

Please sign in to comment.