@digitraffic/common 2025.1.15-2 → 2025.1.16-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,6 +29,7 @@ export interface ClusterConfiguration {
|
|
29
29
|
export interface ClusterImportConfiguration {
|
30
30
|
readonly clusterReadEndpoint: string;
|
31
31
|
readonly clusterWriteEndpoint: string;
|
32
|
+
readonly clusterIdentifier: string;
|
32
33
|
}
|
33
34
|
/**
|
34
35
|
* Stack that creates DatabaseCluster.
|
@@ -42,6 +42,7 @@ export class DbStack extends Stack {
|
|
42
42
|
if (configuration.clusterImport) {
|
43
43
|
createParameter(this, "cluster.reader", configuration.clusterImport.clusterReadEndpoint);
|
44
44
|
createParameter(this, "cluster.writer", configuration.clusterImport.clusterWriteEndpoint);
|
45
|
+
this.clusterIdentifier = configuration.clusterImport.clusterIdentifier;
|
45
46
|
}
|
46
47
|
}
|
47
48
|
createParameterGroups(customVersions, workmem) {
|