Skip to content

Commit

Permalink
FIX: eks map_{users,roles} issues mapping values
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Feb 19, 2021
1 parent 05ed169 commit 27370ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cluster/provisioners/eks/provisioner.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (e EKS) createVarFile() (err error) {
groups = ["%v"]
username = "%v"
userarn = "%v"
}
},
`, strings.Join(account.Groups, "\",\""), account.Username, account.UserARN,
))
}
Expand All @@ -143,7 +143,7 @@ func (e EKS) createVarFile() (err error) {
groups = ["%v"]
username = "%v"
rolearn = "%v"
}
},
`, strings.Join(account.Groups, "\",\""), account.Username, account.RoleARN,
))
}
Expand Down

0 comments on commit 27370ab

Please sign in to comment.