fix: error message typo

This commit is contained in:
Mustafa UZUN 2023-08-20 18:46:49 +03:00
parent 0ce4e878e8
commit 4ed6dfbfe1
1 changed files with 1 additions and 1 deletions

View File

@ -2472,7 +2472,7 @@ func (c *awsCloudImplementation) AccountInfo() (string, string, error) {
response, err := c.sts.GetCallerIdentity(request)
if err != nil {
return "", "", fmt.Errorf("error geting AWS account ID: %v", err)
return "", "", fmt.Errorf("error getting AWS account ID: %v", err)
}
arn, err := arn.Parse(aws.StringValue(response.Arn))