summaryrefslogtreecommitdiff
path: root/aws/sts.go
diff options
context:
space:
mode:
Diffstat (limited to 'aws/sts.go')
-rw-r--r--aws/sts.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/aws/sts.go b/aws/sts.go
index b7b0b356..3883de42 100644
--- a/aws/sts.go
+++ b/aws/sts.go
@@ -8,7 +8,7 @@ import (
// STS -
type STS struct {
identifier func() CallerIdentitifier
- cache map[string]interface{}
+ cache map[string]any
}
var identifierClient CallerIdentitifier
@@ -28,7 +28,7 @@ func NewSTS(_ ClientOptions) *STS {
}
return identifierClient
},
- cache: make(map[string]interface{}),
+ cache: make(map[string]any),
}
}