Procedures

Automation procedures in the AWS Secrets Manager book.

The following documentation is for AWS Secrets Manager v1.6.2 (BDK).

to get a (secret) from secrets manager

Retrieves a secret from AWS Secrets Manager

Input Concepts

Concept
Description
Type
Required
Default Value

secret name

The name or ARN of the secret to retrieve

text

Yes

(no default)

Output Concepts

Concept
Description
Type

secret

the secret: The secret value as a dictionary

`` or text

Examples

get a secret from secrets manager
   the secret name is "my-secret/super-secret"

to list (secrets) from secrets manager

Lists all secrets available in AWS Secrets Manager

Input Concepts

Concept
Description
Type
Required
Default Value

max results

The maximum number of secrets to return (default: 100)

number

No

100

Output Concepts

Concept
Description
Type

A list of Secret objects (without the actual secret values)

aws secret information

Examples

list secrets from secrets manager
   the max results is 100

Last updated

Was this helpful?