Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in output of vault write kubernetes/creds/auto-managed-sa-and-role #47

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions path_creds.go
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ func (b *backend) createCreds(ctx context.Context, req *logical.Request, role *r
case err != nil:
return nil, fmt.Errorf("failed to read TTL of created Kubernetes token for %s/%s: %s", reqPayload.Namespace, genName, err)
case createdTokenTTL > theTTL:
respWarning = append(respWarning, fmt.Sprintf("the created Kubernetes service accout token TTL %v is greater than the Vault lease TTL %v", createdTokenTTL, theTTL))
respWarning = append(respWarning, fmt.Sprintf("the created Kubernetes service account token TTL %v is greater than the Vault lease TTL %v", createdTokenTTL, theTTL))
case createdTokenTTL < theTTL:
respWarning = append(respWarning, fmt.Sprintf("the created Kubernetes service accout token TTL %v is less than the Vault lease TTL %v; capping the lease TTL accordingly", createdTokenTTL, theTTL))
respWarning = append(respWarning, fmt.Sprintf("the created Kubernetes service account token TTL %v is less than the Vault lease TTL %v; capping the lease TTL accordingly", createdTokenTTL, theTTL))
resp.Secret.TTL = createdTokenTTL
}

Expand Down
Loading