create Secret with namy generated password/keys with CDK
Hi team,
I want to create a secret via CDK that contains 2 passwords (API keys)
secretName = ApiKeys
keys/values =
-
key: password1, value: auto-generated password (current)
-
key: password2, value: auto-generated password (previous)
the CDK syntax I found allows only to create a secret with one secret inside it, is there a way to create a secret in a secret manager with many generated secrets inside it? any snippet code would be helpful.
Thank you.
Here is a example of secrets creation using SAM. You can potentially update line 113 for SecretString in this file to create multiple KVs.
Hope that helps.
My apologies as it's not a CDK based project.
It's a SAM based project and the README (https://github.com/aws-samples/secret-creator-secrets-manager/blob/main/README.md) walks you through how to set it up, build and deploy
I need to modify the source code to be able to have 2 KVs ? it's not doable directly via CDK ? I can do it via AWS console add new KV
Relevant questions
create Secret with namy generated password/keys with CDK
asked 3 months agoHow to pass ARN of DB credentials stored in secret manager to Lambda in CDK?
Accepted Answerasked a month agoCDK: How to create an encrypted Aurora MySQL-compatible cluster using an un-encrypted snapshot
How to set "compressionType" property in Glue Table via CDK
asked 5 months agodeploy new cdk Aurora Cluster
Accepted Answerasked a month agoHow to add domain alias to existing CloudFront distribution using CDK
Accepted Answerasked 7 months agoRotating the Old AWS Access Key, for a New AWS Access Key in WorkMail
Accepted Answerasked 6 months agoCDK AWS trigger with type EVENT
asked 2 months agoHow to create Athena View using CDK
Accepted Answerasked 6 months agoCreate API GW Websocket API that is only accessible from within a VPC.
asked 2 months ago
so I need to npm install that project? I don't understand the solution