summaryrefslogtreecommitdiff
path: root/aws
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2023-03-19 21:31:54 -0400
committerDave Henderson <dhenderson@gmail.com>2023-03-19 21:31:54 -0400
commite34b2a5d28970f0fd3ae677180a1e33488245a4c (patch)
treeef090e783ace329dac9df1d92ed237469a466e9d /aws
parente89af5debb3a5d15a571d501bdd12b1fd8861cea (diff)
fix new lint errors
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'aws')
-rw-r--r--aws/kms.go2
-rw-r--r--aws/sts.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/aws/kms.go b/aws/kms.go
index 29057680..c2a4ad2f 100644
--- a/aws/kms.go
+++ b/aws/kms.go
@@ -18,7 +18,7 @@ type KMS struct {
}
// NewKMS - Create new AWS KMS client using an SDKSession
-func NewKMS(option ClientOptions) *KMS {
+func NewKMS(_ ClientOptions) *KMS {
client := kms.New(SDKSession())
return &KMS{
Client: client,
diff --git a/aws/sts.go b/aws/sts.go
index 336b8f86..b7b0b356 100644
--- a/aws/sts.go
+++ b/aws/sts.go
@@ -19,7 +19,7 @@ type CallerIdentitifier interface {
}
// NewSTS -
-func NewSTS(options ClientOptions) *STS {
+func NewSTS(_ ClientOptions) *STS {
return &STS{
identifier: func() CallerIdentitifier {
if identifierClient == nil {