Skip to content

Commit

Permalink
Merge pull request #39 from davidholsgrove/master
Browse files Browse the repository at this point in the history
Change display name separator to hyphen
  • Loading branch information
briankassouf authored Aug 7, 2018
2 parents 79458d2 + 8a737fa commit 40941a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion path_login.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (b *kubeAuthBackend) pathLogin() framework.OperationFunc {
"service_account_secret_name": serviceAccount.SecretName,
"role": roleName,
},
DisplayName: fmt.Sprintf("%s:%s", serviceAccount.Namespace, serviceAccount.Name),
DisplayName: fmt.Sprintf("%s-%s", serviceAccount.Namespace, serviceAccount.Name),
LeaseOptions: logical.LeaseOptions{
Renewable: true,
TTL: role.TTL,
Expand Down

0 comments on commit 40941a6

Please sign in to comment.