Skip to content

Commit

Permalink
Write stack service account file to right path (#554)
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 authored Oct 1, 2024
1 parent 5c91857 commit a84e3f4
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 a84e3f4

Please sign in to comment.