File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ type Config struct {
3737 // URL. This is a constant specific to each server.
3838 TokenURL string
3939
40- // Scope specifies optional requested permissions.
40+ // Scopes specifies optional requested permissions.
4141 Scopes []string
4242
4343 // EndpointParams specifies additional parameters for requests to the token endpoint.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
2828
2929// AwsSecurityCredentials models AWS security credentials.
3030type AwsSecurityCredentials struct {
31- // AccessKeyId is the AWS Access Key ID - Required.
31+ // AccessKeyID is the AWS Access Key ID - Required.
3232 AccessKeyID string `json:"AccessKeyID"`
3333 // SecretAccessKey is the AWS Secret Access Key - Required.
3434 SecretAccessKey string `json:"SecretAccessKey"`
Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ type SubjectTokenSupplier interface {
329329type AwsSecurityCredentialsSupplier interface {
330330 // AwsRegion should return the AWS region or an error.
331331 AwsRegion (ctx context.Context , options SupplierOptions ) (string , error )
332- // GetAwsSecurityCredentials should return a valid set of AwsSecurityCredentials or an error.
332+ // AwsSecurityCredentials should return a valid set of AwsSecurityCredentials or an error.
333333 // The external account token source does not cache the returned security credentials, so caching
334334 // logic should be implemented in the supplier to prevent multiple requests for the same security credentials.
335335 AwsSecurityCredentials (ctx context.Context , options SupplierOptions ) (* AwsSecurityCredentials , error )
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ type Config struct {
5656 // the OAuth flow, after the resource owner's URLs.
5757 RedirectURL string
5858
59- // Scope specifies optional requested permissions.
59+ // Scopes specifies optional requested permissions.
6060 Scopes []string
6161
6262 // authStyleCache caches which auth style to use when Endpoint.AuthStyle is
You can’t perform that action at this time.
0 commit comments