There is a variable typo in pkg/aws/ec2.go around lines 55-56.
The variable is named base54val, but it stores the result of
base64.StdEncoding.EncodeToString(), so it should be named base64val.
File: pkg/aws/ec2.go, lines 55-56
Expected fix: rename base54val to base64val everywhere it is used.
(Filed at a maintainer's request as part of validating the automated
review workflow on bot-opened PRs.)
There is a variable typo in pkg/aws/ec2.go around lines 55-56.
The variable is named
base54val, but it stores the result ofbase64.StdEncoding.EncodeToString(), so it should be namedbase64val.File: pkg/aws/ec2.go, lines 55-56
Expected fix: rename
base54valtobase64valeverywhere it is used.(Filed at a maintainer's request as part of validating the automated
review workflow on bot-opened PRs.)