-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andre Kurait <[email protected]>
- Loading branch information
1 parent
7bc258a
commit b76a164
Showing
4 changed files
with
69 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 18 additions & 20 deletions
38
deployment/cdk/opensearch-service-migration/cdk.context.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
{ | ||
"default": { | ||
"stage": "<STAGE>", | ||
"stage": "test-stage", | ||
"targetCluster": { | ||
"endpoint": "<TARGET_CLUSTER_ENDPOINT>", | ||
"endpoint": "https://target-cluster.com:443", | ||
"auth": { | ||
"type": "none | basic | sigv4", | ||
"// basic auth documentation": "The next two lines are releavant for basic auth only", | ||
"username": "<USERNAME>", | ||
"passwordFromSecretArn": "<ARN_OF_SECRET_CONTAINING_PASSWORD>", | ||
"// sigv4 documentation": "The next two lines are releavant for sigv4 only", | ||
"region": "<REGION>", | ||
"serviceSigningName": "es | aoss" | ||
"type": "none" | ||
} | ||
}, | ||
"sourceCluster": { | ||
"endpoint": "<SOURCE_CLUSTER_ENDPOINT>", | ||
"endpoint": "https://source-cluster.com:443", | ||
"auth": { | ||
"type": "none | basic | sigv4", | ||
"// basic auth documentation": "The next two lines are releavant for basic auth only", | ||
"username": "<USERNAME>", | ||
"passwordFromSecretArn": "<ARN_OF_SECRET_CONTAINING_PASSWORD>", | ||
"// sigv4 documentation": "The next two lines are releavant for sigv4 only", | ||
"region": "<REGION>", | ||
"serviceSigningName": "es | aoss" | ||
"type": "none" | ||
} | ||
}, | ||
"vpcId": "<VPC_ID>", | ||
"reindexFromSnapshotServiceEnabled": true, | ||
"reindexFromSnapshotMaxShardSizeGiB": 80, | ||
"trafficReplayerServiceEnabled": true | ||
} | ||
"migrationAssistanceEnabled": true, | ||
"migrationConsoleServiceEnabled": true, | ||
"otelCollectorEnabled": true, | ||
"targetClusterProxyServiceEnabled": true | ||
}, | ||
"availability-zones:account=767398060394:region=us-east-1": [ | ||
"us-east-1a", | ||
"us-east-1b", | ||
"us-east-1c", | ||
"us-east-1d", | ||
"us-east-1e", | ||
"us-east-1f" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters