From c332e1e512e0f30ad61091935ee2bee8d866437c Mon Sep 17 00:00:00 2001 From: Greg Schohn Date: Tue, 1 Oct 2024 12:26:18 -0400 Subject: [PATCH] Remove all dependencies from the migration-console stack That means that the console can come up and be used for diagnostics if the other stacks/clusters don't properly deploy. Signed-off-by: Greg Schohn --- .../cdk/opensearch-service-migration/lib/stack-composer.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts b/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts index 9f52bc8a8..6e4bf5b13 100644 --- a/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts +++ b/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts @@ -619,10 +619,8 @@ export class StackComposer { managedServiceSourceSnapshotEnabled, env: props.env }) - // To enable the Migration Console to make requests to other service endpoints with services, - // it must be deployed after any connected services - this.addDependentStacks(migrationConsoleStack, [captureProxyESStack, captureProxyStack, elasticsearchStack, - openSearchStack, osContainerStack, migrationStack, kafkaBrokerStack]) + + this.addDependentStacks(migrationConsoleStack, [migrationStack]) this.stacks.push(migrationConsoleStack) }