@go-to-k/cdkd 0.142.0 → 0.143.0
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.
- package/dist/cli.js +8 -4
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -30547,8 +30547,10 @@ var ASGProvider = class ASGProvider {
|
|
|
30547
30547
|
const lt = properties["LaunchTemplate"];
|
|
30548
30548
|
if (!lt) return void 0;
|
|
30549
30549
|
const out = {};
|
|
30550
|
-
if (lt.LaunchTemplateId !== void 0)
|
|
30551
|
-
|
|
30550
|
+
if (lt.LaunchTemplateId !== void 0) {
|
|
30551
|
+
out.LaunchTemplateId = lt.LaunchTemplateId;
|
|
30552
|
+
if (lt.LaunchTemplateName !== void 0) this.logger.debug(`buildLaunchTemplate: both LaunchTemplateId (${lt.LaunchTemplateId}) and LaunchTemplateName (${lt.LaunchTemplateName}) templated; dropping Name (#551)`);
|
|
30553
|
+
} else if (lt.LaunchTemplateName !== void 0) out.LaunchTemplateName = lt.LaunchTemplateName;
|
|
30552
30554
|
if (lt.Version !== void 0) out.Version = String(lt.Version);
|
|
30553
30555
|
if (out.LaunchTemplateId === void 0 && out.LaunchTemplateName === void 0) return;
|
|
30554
30556
|
return out;
|
|
@@ -30730,7 +30732,9 @@ var ASGProvider = class ASGProvider {
|
|
|
30730
30732
|
if (lastObserved.size === expected.size && [...expected].every((a) => lastObserved.has(a))) return;
|
|
30731
30733
|
await new Promise((r) => setTimeout(r, ASGProvider.TG_CONVERGENCE_POLL_INTERVAL_MS));
|
|
30732
30734
|
}
|
|
30733
|
-
|
|
30735
|
+
const expectedSorted = [...expected].sort();
|
|
30736
|
+
const observedSorted = [...lastObserved].sort();
|
|
30737
|
+
this.logger.warn(`applyTargetGroupArnsDiff: TG set did not converge within ${ASGProvider.TG_CONVERGENCE_TIMEOUT_MS}ms for ASG ${physicalId}. expected=${JSON.stringify(expectedSorted)} observed=${JSON.stringify(observedSorted)}`);
|
|
30734
30738
|
}
|
|
30735
30739
|
async applyMetricsCollectionDiff(physicalId, next, prev) {
|
|
30736
30740
|
if (JSON.stringify(next ?? []) === JSON.stringify(prev ?? [])) return;
|
|
@@ -55235,7 +55239,7 @@ function reorderArgs(argv) {
|
|
|
55235
55239
|
*/
|
|
55236
55240
|
async function main() {
|
|
55237
55241
|
const program = new Command();
|
|
55238
|
-
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.
|
|
55242
|
+
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.143.0");
|
|
55239
55243
|
program.addCommand(createBootstrapCommand());
|
|
55240
55244
|
program.addCommand(createSynthCommand());
|
|
55241
55245
|
program.addCommand(createListCommand());
|