From 6b7978711a09c402ce3e3de62159464aa548b0a4 Mon Sep 17 00:00:00 2001 From: vishal Date: Thu, 4 Mar 2021 12:35:11 -0500 Subject: [PATCH] Update errors.go --- pkg/operator/endpoints/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/operator/endpoints/errors.go b/pkg/operator/endpoints/errors.go index 3df865b47e..09cedbe437 100644 --- a/pkg/operator/endpoints/errors.go +++ b/pkg/operator/endpoints/errors.go @@ -77,7 +77,7 @@ func ErrorAuthInvalid() error { func ErrorAuthOtherAccount() error { return errors.WithStack(&errors.Error{ Kind: ErrAuthOtherAccount, - Message: "the AWS account associated with your CLI's AWS credentials differs from the AWS account associated with your cluster's AWS credentials; run `cortex env configure` to configure your environment with credentials for any IAM user in the same AWS account as your cluster", + Message: "the AWS account associated with your CLI's AWS credentials differs from the AWS account associated with your cluster's AWS credentials; run `aws sts get-caller-identity` to view the credentials being used by the cortex client", }) }