Skip to content

Commit ef27ef6

Browse files
committed
Add new secret creation steps
1 parent fb6cd81 commit ef27ef6

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* **Encryption key**: Select the [encryption key](#create-encryption-key) you created earlier.
2+
3+
* **Resource permissions**: Add the following permissions to your secret to allow the Redis data pipeline to access your secret. Replace `<AWS ACCOUNT ID>` with the AWS account ID for the Redis Cloud cluster that you saved earlier.
4+
5+
{{< embed-md "rc-rdi-secrets-permissions.md" >}}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
```json
2+
{
3+
"Version" : "2012-10-17",
4+
"Statement" : [ {
5+
"Sid" : "RedisDataIntegrationRoleAccess",
6+
"Effect" : "Allow",
7+
"Principal" : "*",
8+
"Action" : [ "secretsmanager:GetSecretValue", "secretsmanager:DescribeSecret" ],
9+
"Resource" : "*",
10+
"Condition" : {
11+
"StringLike" : {
12+
"aws:PrincipalArn" : "arn:aws:iam::<AWS ACCOUNT ID>:role/redis-data-pipeline-secrets-role"
13+
}
14+
}
15+
} ]
16+
}
17+
```

0 commit comments

Comments
 (0)