Amazon Secrets Manager · Arazzo Workflow
Amazon Secrets Manager Generate Password and Store Secret
Version 1.0.0
Generate a random password, store it as a new secret, then read the secret value back to confirm it was saved.
Provider
Workflows
generate-password-and-store-secret
Generate a random password and persist it as a new secret.
Calls GetRandomPassword to produce a strong credential, CreateSecret to store it under the supplied name, and GetSecretValue to confirm the stored value matches.
1
getRandomPassword
GetRandomPassword
Generate a strong random password to the supplied length and complexity rules.
2
createSecret
CreateSecret
Store the generated password as the SecretString of a new secret under the requested name.
3
getSecretValue
GetSecretValue
Retrieve the stored secret value to confirm the generated password was saved correctly.