Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ The following CDK performs a backfill migrations using RFS:
"userSecretArn": <SECRET_WITH_USERNAME_AND_PASSWORD_KEYS>
}
},
"// Note": "The following three options are true by default:",
"migrationAssistanceEnabled": true,
"migrationConsoleServiceEnabled": true,
"otelCollectorEnabled": true,

"// Note": "Additional options specific to this migration type:",
"reindexFromSnapshotServiceEnabled": true,
"reindexFromSnapshotExtraArgs": "",
"artifactBucketRemovalPolicy": "DESTROY"
Expand Down Expand Up @@ -102,6 +108,11 @@ The following sample CDK performs a live capture migration with C&R:
}
},

"// Note": "The following three options are true by default:",
"migrationAssistanceEnabled": true,
"migrationConsoleServiceEnabled": true,
"otelCollectorEnabled": true,

"// settingsForCaptureAndReplay": "Enable the following services for live traffic capture and replay:",
"trafficReplayerServiceEnabled": true,

Expand Down
14 changes: 7 additions & 7 deletions _migration-assistant/migration-phases/deploy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,18 @@ Use the following steps to configure and deploy RFS, deploy Migration Assistant,
},
"reindexFromSnapshotExtraArgs": "<RFS PARAMETERS (see below)>",
"reindexFromSnapshotMaxShardSizeGiB": 80,
"otelCollectorEnabled": true,
"migrationConsoleServiceEnabled": true
"// Note": "The following three options are true by default:",
"migrationAssistanceEnabled": true,
"migrationConsoleServiceEnabled": true,
"otelCollectorEnabled": true
}
}
```
{% include copy.html %}

The source and target cluster authorization can be configured to have no authorization, `basic` with a username and password, or `sigv4`.

### Environment configuration examples
### Environment configuration examples

To avoid conflicts with existing deployments, consider using different context IDs and stage names:

Expand All @@ -188,16 +190,14 @@ Use the following steps to configure and deploy RFS, deploy Migration Assistant,
"version": "ES_7.10",
"auth": {
"type": "basic",
"username": "admin",
"passwordFromSecretArn": "arn:aws:secretsmanager:us-west-2:123456789012:secret:migration-source-password"
"userSecretArn": "arn:aws:secretsmanager:us-west-2:123456789012:secret:migration-source-password"
}
},
"targetCluster": {
"endpoint": "https://migration-target-os219.us-west-2.es.amazonaws.com",
"auth": {
"type": "basic",
"username": "admin",
"passwordFromSecretArn": "arn:aws:secretsmanager:us-west-2:123456789012:secret:migration-target-password"
"userSecretArn": "arn:aws:secretsmanager:us-west-2:123456789012:secret:migration-target-password"
}
}
},
Expand Down