Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RC: RDI in the cloud #570

Draft
wants to merge 41 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c4d39e6
begin index and setup drafts
kaitlynmichael Aug 19, 2024
d586971
overview draft
kaitlynmichael Aug 22, 2024
b5beb6a
edit desc
kaitlynmichael Aug 22, 2024
10d5de8
fix relref
kaitlynmichael Aug 22, 2024
c9e5161
get started, doc link
kaitlynmichael Aug 22, 2024
42fcff9
prepare source database with link
kaitlynmichael Aug 22, 2024
17270d8
setup connectivity
kaitlynmichael Aug 22, 2024
9e0de8e
connectivity steps
kaitlynmichael Aug 22, 2024
efc8b0b
pane > box
kaitlynmichael Aug 22, 2024
20c3050
Limitations draft
kaitlynmichael Aug 23, 2024
c3b7bca
Apply suggestions from code review
cmilesb Aug 30, 2024
85c6d08
Merge branch 'main' into DOC-4137
cmilesb Sep 3, 2024
e938762
Edits and DB credentials changes
cmilesb Sep 3, 2024
a5977a2
Add setup step and more edits
cmilesb Sep 6, 2024
289f0e4
Move last step to provision
cmilesb Sep 11, 2024
1d6fce4
Merge branch 'main' into DOC-4137
cmilesb Sep 13, 2024
272e518
Add some of Yaron's suggestions to intro
cmilesb Sep 13, 2024
9d12553
Apply suggestions from code review
cmilesb Sep 19, 2024
1551e1d
Merge branch 'main' into DOC-4137
cmilesb Sep 19, 2024
a32204e
Add define steps
cmilesb Sep 20, 2024
07bc249
Merge branch 'main' into DOC-4137
cmilesb Sep 20, 2024
bc41625
Merge branch 'main' into DOC-4137
cmilesb Sep 20, 2024
71f431c
Fix relrefs
cmilesb Sep 20, 2024
e8ea310
stash commit
cmilesb Sep 23, 2024
860944a
Add security information
cmilesb Sep 24, 2024
639fc50
Merge branch 'main' into DOC-4137
cmilesb Sep 27, 2024
697d665
Merge branch 'main' into DOC-4137
cmilesb Oct 7, 2024
fa87f86
Add View/Edit
cmilesb Oct 7, 2024
49d1f54
Incorporate Yaron's feedback, part 1
cmilesb Oct 11, 2024
4abac23
Merge branch 'main' into DOC-4137
cmilesb Oct 11, 2024
4d69274
stash commit
cmilesb Oct 15, 2024
129d6af
More suggestions from Yaron
cmilesb Oct 21, 2024
99229b1
Merge branch 'main' into DOC-4137
cmilesb Oct 21, 2024
c3e501e
Apply suggestions from code review
cmilesb Oct 22, 2024
01907d8
Merge branch 'main' into DOC-4137
cmilesb Oct 24, 2024
c9469e0
Combine define and provision and remove errors section
cmilesb Oct 25, 2024
d56188a
Merge branch 'main' into DOC-4137
cmilesb Nov 5, 2024
f817848
Add secret permissions and keys
cmilesb Nov 5, 2024
8f274f5
Update content/operate/rc/databases/rdi/define.md
cmilesb Nov 5, 2024
2d2820d
Fix note
cmilesb Nov 5, 2024
46603a6
replace account ID in resource permissions
cmilesb Nov 5, 2024
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
Prev Previous commit
replace account ID in resource permissions
  • Loading branch information
cmilesb committed Nov 5, 2024
commit 46603a61c20a86094eff7396e55b6e6e06a8bc7e
4 changes: 2 additions & 2 deletions content/operate/rc/databases/rdi/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ If your source database has TLS or mTLS enabled, we recommend that you enter the

- **Encryption key**: Select a self-managed encryption key from the list of keys, or select **Add a new key** to [create one](https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html).

- **Resource permissions**: Add the following permissions to your secret to allow the Redis data pipeline to access your secret:
- **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 provided AWS Account ID.

```json
{
Expand All @@ -63,7 +63,7 @@ If your source database has TLS or mTLS enabled, we recommend that you enter the
"Resource" : "*",
"Condition" : {
"StringLike" : {
"aws:PrincipalArn" : "arn:aws:iam::984612047909:role/redis-data-pipeline-secrets-role"
"aws:PrincipalArn" : "arn:aws:iam::<AWS ACCOUNT ID>:role/redis-data-pipeline-secrets-role"
}
}
} ]
Expand Down
Loading