Currently, my dotnet application is using AWS credentials but I would like to replace it with service account token. I don't see a way to do that in AWS documentation.
3
-
What is a "service account token"?John Rotenstein– John Rotenstein2022-12-14 06:08:14 +00:00Commented Dec 14, 2022 at 6:08
-
Would like to use Service account (K8s) for my application. Service account will have a token generated in the cluster. So, I was thinking that If I can replace AWS credentials from the application to somehow use the token? Not sure if that's a thing. I don't know how other people implement this kind of scenarioPsdet– Psdet2022-12-14 16:08:40 +00:00Commented Dec 14, 2022 at 16:08
-
1If you want to call AWS APIs, you will need AWS credentials. Temporary credentials can be 'generated' using the AWS Security Token Service. So, you could write your own code that might accept one form of authentication and then generate AWS credentials. Not sure if that meets your use-case.John Rotenstein– John Rotenstein2022-12-15 03:05:15 +00:00Commented Dec 15, 2022 at 3:05
Add a comment
|