docs/admin-guide/guides/secret-managers/aws.mdx
AWS Secrets Manager helps you protect access to your applications, services, and IT resources. This integration uses IAM user credentials (Access Key + Secret Key) to authenticate directly with AWS Secrets Manager.
Create an IAM policy that grants read access to the secrets Activepieces will retrieve.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"secretsmanager:GetSecretValue",
"secretsmanager:ListSecrets",
"secretsmanager:DescribeSecret"
],
"Resource": "*"
}
]
}
ActivepiecesSecretsReadOnly), and create it.activepieces-secrets-user) and click Next.AKIAIOSFODNN7EXAMPLE).us-east-1).When configuring a global connection that requires credentials:
Activepieces will use the configured credentials to retrieve the secret value and inject it into the connection at runtime.
<Warning> If you update existing secrets and you can't see the update reflected . refer to [caching](/admin-guide/guides/secret-managers/overview#caching) </Warning>