Skip to content

Commit

Permalink
fix cli user role name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Vlasic committed Aug 28, 2021
1 parent aeda536 commit 865dd6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/backend/api/security/security.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func Credentials(project *mantil.Project) (*stsTypes.Credentials, error) {
if err != nil {
return nil, err
}
role := fmt.Sprintf("arn:aws:iam::%s:role/mantil-user", accountID)
role := fmt.Sprintf("arn:aws:iam::%s:role/mantil-cli-user", accountID)
creds, err := aws.RoleCredentials(project.Name, role, policy)
if err != nil {
return nil, err
Expand Down

0 comments on commit 865dd6f

Please sign in to comment.