Retrieve secrets from secret manager without using SDK

-1

I want to retrieve the AWS secrets without using the SDK because SDK adds lots (300+) of dependencies. I wanted to know if retrieving the secret using REST APIs and IAM Role/User is possible. And if yes then how?

I am building a microservice using Micronaut and want to avoid adding extra jars.

已提問 10 個月前檢視次數 464 次
2 個答案
0
已接受的答案

Hi,

Which language are you using, and from where are you planning to call the AWS Secret Manager API ?

You can sign you own request and directly call the GetSecretValue API action.

But keep in mind that you will then need to maintain this part of code and make sure that you are handling credentials discovery and usage properly.

profile pictureAWS
已回答 10 個月前
profile picture
專家
已審閱 10 個月前
  • Hi, I am using Java with Micronaut. In the article "sign you own request" the below line is mentioned in step 5: Credential=AKIAIOSFODNN7EXAMPLE/20220830/us-east-1/ec2/aws4_request, what does "AKIAIOSFODNN7EXAMPLE" signifies? Is there any recommended way to add this piece of information to the Micronaut application without any hard coding?

  • You should rely on an IAM instance profile to get temporary credentials if your application is running on an EC2 instance.

    But again, the role of the SDK is to abstract and simplify this process and I would recommend using it. Do you have any specific size constraints that make the size of the SDK such an important factor ?

0

If using lambdas, you can consider using Parameter and Secrets lambda layer which allows you to cache secrets in lambda side: https://aws.amazon.com/blogs/compute/using-the-aws-parameter-and-secrets-lambda-extension-to-cache-parameters-and-secrets/

profile picture
專家
已回答 10 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南