Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions platform-cloud/docs/compute-envs/aws-cloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -508,16 +508,27 @@ In addition to the managed policies, attach the following inline policies:
}
```

**Secrets Manager** — grants access to credentials stored in Seqera, which are prefixed with `tower-`:
**Secrets Manager** — grants access to the pipeline secrets Seqera stores in AWS Secrets Manager under the `tower-` prefix. Seqera creates each referenced secret when a pipeline launches and deletes it on completion:

```json
{
"Version": "2012-10-17",
"Statement": {
"Effect": "Allow",
"Action": ["secretsmanager:GetSecretValue", "secretsmanager:ListSecrets"],
"Resource": ["arn:aws:secretsmanager:<REGION>:*:secret:tower-*"]
}
"Statement": [
{
"Effect": "Allow",
"Action": [
"secretsmanager:GetSecretValue",
"secretsmanager:CreateSecret",
"secretsmanager:DeleteSecret"
],
"Resource": ["arn:aws:secretsmanager:<REGION>:*:secret:tower-*"]
},
{
"Effect": "Allow",
"Action": ["secretsmanager:ListSecrets"],
"Resource": ["*"]
}
]
}
```

Expand Down
23 changes: 17 additions & 6 deletions platform-enterprise_docs/compute-envs/aws-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,16 +536,27 @@ In addition to the managed policies, attach the following inline policies:
}
```

**Secrets Manager** — grants access to credentials stored in Seqera, which are prefixed with `tower-`:
**Secrets Manager** — grants access to the pipeline secrets Seqera stores in AWS Secrets Manager under the `tower-` prefix. Seqera creates each referenced secret when a pipeline launches and deletes it on completion:

```json
{
"Version": "2012-10-17",
"Statement": {
"Effect": "Allow",
"Action": ["secretsmanager:GetSecretValue", "secretsmanager:ListSecrets"],
"Resource": ["arn:aws:secretsmanager:<REGION>:*:secret:tower-*"]
}
"Statement": [
{
"Effect": "Allow",
"Action": [
"secretsmanager:GetSecretValue",
"secretsmanager:CreateSecret",
"secretsmanager:DeleteSecret"
],
"Resource": ["arn:aws:secretsmanager:<REGION>:*:secret:tower-*"]
},
{
"Effect": "Allow",
"Action": ["secretsmanager:ListSecrets"],
"Resource": ["*"]
}
]
}
```

Expand Down