Skip to content

Commit

Permalink
fix: updating DI and DC ingest topic names to be unique
Browse files Browse the repository at this point in the history
  • Loading branch information
drduhe committed Jan 10, 2025
1 parent be5bfdc commit 70798d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/osml/data_catalog/dc_dataplane.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Amazon.com, Inc. or its affiliates.
* Copyright 2024-2025 Amazon.com, Inc. or its affiliates.
*/

import { Duration, RemovalPolicy, Size } from "aws-cdk-lib";
Expand Down Expand Up @@ -200,7 +200,7 @@ export class DCDataplaneConfig extends BaseConfig {
LAMBDA_STORAGE_SIZE: 10,
LAMBDA_TIMEOUT: 300,
OS_DATA_NODES: 4,
SNS_INGEST_TOPIC_NAME: "osml-stac-ingest",
SNS_INGEST_TOPIC_NAME: "osml-dc-ingest",
STAC_CONTAINER_DOCKERFILE: "docker/Dockerfile.stac",
STAC_CONTAINER_BUILD_TARGET: "stac",
STAC_CONTAINER_URI: "awsosml/osml-data-intake-stac:latest",
Expand Down
4 changes: 2 additions & 2 deletions lib/osml/data_intake/di_dataplane.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023-2024 Amazon.com, Inc. or its affiliates.
* Copyright 2023-2025 Amazon.com, Inc. or its affiliates.
*/

import { Duration, RemovalPolicy, Size } from "aws-cdk-lib";
Expand Down Expand Up @@ -123,7 +123,7 @@ export class DIDataplaneConfig extends BaseConfig {
LAMBDA_TIMEOUT: 900,
S3_OUTPUT_BUCKET_NAME: "di-output-bucket",
SNS_INPUT_TOPIC_NAME: "osml-data-intake",
SNS_STAC_TOPIC_NAME: "osml-stac-ingest",
SNS_STAC_TOPIC_NAME: "osml-di-ingest",
...config
});
}
Expand Down

0 comments on commit 70798d2

Please sign in to comment.