aws-secrets-manager Questions
15
Solved
I am retrieving secrets I have stored in AWS secrets manager with the AWS cli like this:
aws secretsmanager get-secret-value --secret-id secrets
Which returns
arn:aws:secretsmanager<ID>:s...
Irenairene asked 18/6, 2018 at 14:18
2
Solved
Overview
Create a aws_secretsmanager_secret
Create a aws_secretsmanager_secret_version
Store a uniquely generated string as that above version
Use local-exec provisioner to store the actual secure...
Hartman asked 22/9, 2020 at 19:35
2
Looking at the man page for list-secrets, there is no special options to show deleted or not. It does not list deleted secrets. However, the output definition includes a "DeletedDate" tim...
Emmer asked 27/11, 2020 at 13:31
3
I hate it when I'm creating a secret store in AWS and it adds a random uid at the end of the ARN.
Example: arn:aws:secretsmanager:us-east-1:xxxxxxxx:secret:secrets-store-development-k8s-klbiCG
This...
Wooer asked 25/2, 2021 at 15:31
3
I am attempting to use Secrets Manager a Lambda function in AWS. Secrets a manager is used to store database credentials to Snowflake (username, password).
I managed to set up a secret in Secrets ...
Missing asked 18/9, 2019 at 21:9
4
Solved
In EKS I am trying to use SecretProviderClass to provide secrets as environment variables to containers. I can see the secret mounted inside the container but no combination of key/names is allowin...
Venetic asked 1/8, 2022 at 11:14
4
Solved
I'm setting up a Fargate service in AWS using CDK
const albFargateService = new ecs_patterns.ApplicationLoadBalancedFargateService(
this,
'FargateService',
{
vpc: ...,
taskImageOptions: {
ima...
Selfwinding asked 27/8, 2020 at 13:44
4
Having ResourceNotFoundException when using secrets ARN
Tried getting secret only using secret name - doesn't work.
Tried getting secret using ARN - doesn't work.
I've checked my assumed role's p...
Prothorax asked 30/9, 2019 at 13:26
2
Solved
Error: Secrets Manager cannot invoke the specified Lambda function. Ensure that the function policy grants access to the principal secretsmanager.amazonaws.com
I'm using Secret Manager to store my...
Perreira asked 17/11, 2019 at 9:44
5
I am looking to use AWS secret manager to store my RDS password. I have created my database entry in secret manager without any Rotation option, for now I just want to save a password and retrieve ...
Carpetbag asked 23/3, 2021 at 4:41
6
Solved
EDIT: AS OF Feb 2020, AWS SEEMS TO have FIXED THIS BUG. THE BASE64ing and other wise is no longer needed.
I have my secret stored as a string but of course when aws stores the secret it removes ...
Anglesite asked 17/10, 2019 at 15:37
5
I have a secret stored in secrets manager to which I have access to the arn. I want to retrieve the value from this arn and use it in terraform how can I achieve this?
I found this from terraform ...
Unruh asked 11/6, 2020 at 16:10
4
Solved
Using the serverless framework, I am trying to build a Lambda function that periodically rotates a secret stored in AWS Secrets Manager.
I am having trouble configuring the roles needed for the Se...
Stenopetalous asked 19/7, 2019 at 19:54
6
Solved
I'm using AWS Fargate and storing sensitive data with Secrets Manager. Task definition should get environment variables from secrets store
- name: "app"
image: "ecr-image:tag"
essential: true
s...
Romany asked 6/9, 2019 at 12:17
2
Solved
I am trying to create an AWS stack in CloudFormation having a secret in the JSON.
I don't want the value of the secret displayed in the parameters and I don't want my instance (fargate or ec2) to ...
Gelatinize asked 18/6, 2019 at 22:0
3
Solved
In the following (abbreviated CloudFormation template), I am trying to configure an AWS Lambda function to get a value from AWS Secrets Manager injected into its environment:
Resources:
Function:...
Leonoraleonore asked 9/1, 2020 at 10:50
2
Trying to retrieve data from secret manager using Node.js usign async / await.
using function
for example fetchSecret('SECRETKEY')
var aws = require("aws-sdk");
var client = new aws.Secre...
Kyrstin asked 30/8, 2021 at 8:7
2
Solved
The idea is that I want to use Terraform resource aws_secretsmanager_secret to create only three secrets (not workspace-specified secret), one for the dev environment, one for preprod and the third...
Profiterole asked 17/3, 2021 at 10:11
3
Solved
I may be missing something obvious here, but I can't seem to find documentation about retrieving a specific key/value from a secrets manager secret for an ECS task definition.
I have a secret with...
Georg asked 24/7, 2019 at 22:4
3
Solved
I'm having trouble getting the AWS Secrets Manager module mocked for the jest unit tests... The part it errors on is the .promise(). When I remove that, the code doesn't work for the real Secrets M...
Incidentally asked 15/6, 2020 at 15:32
1
Solved
I've been trying to create secret on the command line as follows :
~/$ aws secretsmanager create-secret --name first-secret
{
"ARN": "arn:aws:secretsmanager:us-east-2:123456789012:s...
Panda asked 8/1, 2020 at 7:46
7
Solved
I am currently working with Eclipse and the AWS Toolkit for Eclipse. My project already works and it is doing its job, which is to connect to an RDS instance and return JSON objects to API Gateway ...
Bog asked 11/6, 2018 at 13:11
7
Is there anyway we can pass dynamic references to Secret Manager to AWS Launch Config User Data?
Here is the code snippet I tried:
"SampleLaunchConfig": {
"Type": "AWS::AutoScaling::LaunchConfi...
Eidetic asked 3/12, 2018 at 8:21
4
Solved
I'm writing a flask API in pycharm. When I run my code locally, requests using boto3 to get secrets from secrets manager take less than a second. However, when I put my code on an EC2, it takes abo...
Spear asked 6/5, 2018 at 19:52
0
AWS maintains a secret versioning system, a new version is created if the secret value is updated or if the secret is rotated.
I am in the process of getting existing secrets in AWS under the purvi...
Sostenuto asked 23/8, 2022 at 19:20
1 Next >
© 2022 - 2025 — McMap. All rights reserved.