File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ type Config struct {
37
37
// URL. This is a constant specific to each server.
38
38
TokenURL string
39
39
40
- // Scope specifies optional requested permissions.
40
+ // Scopes specifies optional requested permissions.
41
41
Scopes []string
42
42
43
43
// 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 (
28
28
29
29
// AwsSecurityCredentials models AWS security credentials.
30
30
type AwsSecurityCredentials struct {
31
- // AccessKeyId is the AWS Access Key ID - Required.
31
+ // AccessKeyID is the AWS Access Key ID - Required.
32
32
AccessKeyID string `json:"AccessKeyID"`
33
33
// SecretAccessKey is the AWS Secret Access Key - Required.
34
34
SecretAccessKey string `json:"SecretAccessKey"`
Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ type SubjectTokenSupplier interface {
329
329
type AwsSecurityCredentialsSupplier interface {
330
330
// AwsRegion should return the AWS region or an error.
331
331
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.
333
333
// The external account token source does not cache the returned security credentials, so caching
334
334
// logic should be implemented in the supplier to prevent multiple requests for the same security credentials.
335
335
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 {
56
56
// the OAuth flow, after the resource owner's URLs.
57
57
RedirectURL string
58
58
59
- // Scope specifies optional requested permissions.
59
+ // Scopes specifies optional requested permissions.
60
60
Scopes []string
61
61
62
62
// authStyleCache caches which auth style to use when Endpoint.AuthStyle is
You can’t perform that action at this time.
0 commit comments