@go-to-k/cdkd 0.276.3 → 0.276.5
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/{asg-provider-DFSI7iBe.js → asg-provider-Wm3Q60jN.js} +2 -2
- package/dist/{asg-provider-DFSI7iBe.js.map → asg-provider-Wm3Q60jN.js.map} +1 -1
- package/dist/cli.js +42 -11
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-gQzltBso.js → deploy-engine-BwPdeLbJ.js} +78 -23
- package/dist/{deploy-engine-gQzltBso.js.map → deploy-engine-BwPdeLbJ.js.map} +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -12090,7 +12090,7 @@ var CloudControlProvider = class {
|
|
|
12090
12090
|
if (context?.finalSnapshotIdentifier !== void 0) throw new ProvisioningError(`${logicalId} (${resourceType}) requires a final snapshot (DeletionPolicy: Snapshot), but the Cloud Control API delete route has no final-snapshot parameter. Re-run with --skip-final-snapshot after snapshotting manually, or retain the resource.`, resourceType, logicalId, physicalId);
|
|
12091
12091
|
if (context?.removeProtection === true && resourceType === "AWS::AutoScaling::AutoScalingGroup") {
|
|
12092
12092
|
this.logger.debug(`Delegating protected AutoScalingGroup ${logicalId} delete to the SDK ASGProvider (Cloud Control cannot force-delete a protected ASG)`);
|
|
12093
|
-
const { ASGProvider } = await import("./asg-provider-
|
|
12093
|
+
const { ASGProvider } = await import("./asg-provider-Wm3Q60jN.js").then((n) => n.n);
|
|
12094
12094
|
await new ASGProvider().delete(logicalId, physicalId, resourceType, _properties, context);
|
|
12095
12095
|
return;
|
|
12096
12096
|
}
|
|
@@ -17122,12 +17122,45 @@ const ATOMIC_FINAL_SNAPSHOT_TYPES = /* @__PURE__ */ new Set([
|
|
|
17122
17122
|
* `AWS::Redshift::Cluster` (`CreateClusterSnapshot`, issue #1353), and
|
|
17123
17123
|
* `AWS::ElastiCache::ReplicationGroup` (ElastiCache `CreateSnapshot`
|
|
17124
17124
|
* against the replication group, issue #1353).
|
|
17125
|
+
*
|
|
17126
|
+
* The two sets are DISJOINT by construction and must stay that way:
|
|
17127
|
+
* {@link finalSnapshotMechanism} tests the atomic set first, so a type in
|
|
17128
|
+
* both would silently take the atomic arm and never be snapshotted here.
|
|
17129
|
+
* Pinned by `final-snapshot.test.ts`.
|
|
17125
17130
|
*/
|
|
17126
17131
|
const PRE_DELETE_SNAPSHOT_TYPES = /* @__PURE__ */ new Set([
|
|
17127
17132
|
"AWS::EC2::Volume",
|
|
17128
17133
|
"AWS::Redshift::Cluster",
|
|
17129
17134
|
"AWS::ElastiCache::ReplicationGroup"
|
|
17130
17135
|
]);
|
|
17136
|
+
/**
|
|
17137
|
+
* The mechanism matrix as a PURE function of (type, route) — issue #1366.
|
|
17138
|
+
*
|
|
17139
|
+
* Extracted so the executor that ACTS on it and the plan preview that
|
|
17140
|
+
* DESCRIBES it read one source: the preview used to promise "final snapshot,
|
|
17141
|
+
* then delete" for every Snapshot-policy resource, including the shapes the
|
|
17142
|
+
* replay was about to refuse. Deciding this in the CLI's label layer rather
|
|
17143
|
+
* than in the pure classifier is deliberate — whether a refusal actually
|
|
17144
|
+
* happens ALSO depends on `--skip-final-snapshot`, a flag the classifier
|
|
17145
|
+
* cannot see, and the label functions take it.
|
|
17146
|
+
*
|
|
17147
|
+
* `provisionedBy` must be the route the DELETE will take (state record first,
|
|
17148
|
+
* journaled op as the legacy fallback), not merely the op's recorded one —
|
|
17149
|
+
* a gate judging a different route than the delete uses is worse than none.
|
|
17150
|
+
*/
|
|
17151
|
+
function finalSnapshotMechanism(resourceType, provisionedBy) {
|
|
17152
|
+
if (ATOMIC_FINAL_SNAPSHOT_TYPES.has(resourceType)) return provisionedBy === "cc-api" ? "refuse-cc-routed" : "atomic-delete-parameter";
|
|
17153
|
+
if (PRE_DELETE_SNAPSHOT_TYPES.has(resourceType)) return "pre-delete-snapshot";
|
|
17154
|
+
return "refuse-unsupported-type";
|
|
17155
|
+
}
|
|
17156
|
+
/**
|
|
17157
|
+
* Will a `Snapshot`-policy delete of this (type, route) be REFUSED rather
|
|
17158
|
+
* than carried out? The plan preview's question (issue #1366).
|
|
17159
|
+
*/
|
|
17160
|
+
function refusesFinalSnapshot(resourceType, provisionedBy) {
|
|
17161
|
+
const mechanism = finalSnapshotMechanism(resourceType, provisionedBy);
|
|
17162
|
+
return mechanism === "refuse-cc-routed" || mechanism === "refuse-unsupported-type";
|
|
17163
|
+
}
|
|
17131
17164
|
/** Sanitize a physical id into the snapshot-identifier charset (shared by the
|
|
17132
17165
|
* identifier builder and the pre-delete reuse-probe prefix match). */
|
|
17133
17166
|
function sanitizeSnapshotBase(physicalId) {
|
|
@@ -17811,15 +17844,14 @@ function rollbackFinalSnapshotId(resourceType, record, fallbackProvisionedBy) {
|
|
|
17811
17844
|
async function prepareCreateRollbackFinalSnapshot(op, provisionedBy, ctx) {
|
|
17812
17845
|
const { logicalId, resourceType } = op;
|
|
17813
17846
|
const physicalId = op.physicalId;
|
|
17814
|
-
|
|
17815
|
-
|
|
17816
|
-
|
|
17817
|
-
|
|
17818
|
-
|
|
17819
|
-
|
|
17820
|
-
|
|
17847
|
+
switch (finalSnapshotMechanism(resourceType, provisionedBy)) {
|
|
17848
|
+
case "atomic-delete-parameter": return buildFinalSnapshotIdentifier(physicalId, resourceType);
|
|
17849
|
+
case "pre-delete-snapshot":
|
|
17850
|
+
await createPreDeleteFinalSnapshot(resourceType, physicalId, logicalId, ctx.finalSnapshotClients ?? getAwsClients(), ctx.logger);
|
|
17851
|
+
return;
|
|
17852
|
+
case "refuse-cc-routed": throw ccRoutedFinalSnapshotError(logicalId, resourceType, SKIP_FINAL_SNAPSHOT_FLAG);
|
|
17853
|
+
case "refuse-unsupported-type": throw unsupportedFinalSnapshotError(logicalId, resourceType, SKIP_FINAL_SNAPSHOT_FLAG);
|
|
17821
17854
|
}
|
|
17822
|
-
throw unsupportedFinalSnapshotError(logicalId, resourceType, SKIP_FINAL_SNAPSHOT_FLAG);
|
|
17823
17855
|
}
|
|
17824
17856
|
/**
|
|
17825
17857
|
* Retry schedule for a re-create that must wait out a name-release delay:
|
|
@@ -17915,7 +17947,8 @@ function classifyFailedOp(op, stateResources) {
|
|
|
17915
17947
|
function planFailedOps(failedOps, stateResources) {
|
|
17916
17948
|
return failedOps.map((op) => ({
|
|
17917
17949
|
op,
|
|
17918
|
-
action: classifyFailedOp(op, stateResources)
|
|
17950
|
+
action: classifyFailedOp(op, stateResources),
|
|
17951
|
+
effectiveProvisionedBy: effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy)
|
|
17919
17952
|
}));
|
|
17920
17953
|
}
|
|
17921
17954
|
/**
|
|
@@ -17928,7 +17961,8 @@ function planRollback(operations, stateResources, orphanLogicalIds = /* @__PURE_
|
|
|
17928
17961
|
return [...[...otherOps].reverse(), ...sortRollbackCreates(createOps, stateResources)].map((op) => ({
|
|
17929
17962
|
op,
|
|
17930
17963
|
action: classifyRollbackOp(op, stateResources, orphanLogicalIds),
|
|
17931
|
-
replacement: isReplacementOp(op)
|
|
17964
|
+
replacement: isReplacementOp(op),
|
|
17965
|
+
effectiveProvisionedBy: effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy)
|
|
17932
17966
|
}));
|
|
17933
17967
|
}
|
|
17934
17968
|
function partitionOps(operations) {
|
|
@@ -17998,6 +18032,14 @@ async function replayRollback(operations, stateResources, stackName, ctx, option
|
|
|
17998
18032
|
async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds, result, afterOp, isInterrupted) {
|
|
17999
18033
|
const action = classifyRollbackOp(op, stateResources, orphanLogicalIds);
|
|
18000
18034
|
const { logger } = ctx;
|
|
18035
|
+
/**
|
|
18036
|
+
* The route a CREATE-rollback arm resolved for this op (issue #1366) —
|
|
18037
|
+
* hoisted so the shared catch's ROLLBACK_RESOURCE_FAILED reports the route
|
|
18038
|
+
* the delete was going to take, which is the one a refusal is about. Stays
|
|
18039
|
+
* `undefined` on the UPDATE / replacement arms, where the catch keeps the
|
|
18040
|
+
* journaled value (those arms resolve their own routing separately).
|
|
18041
|
+
*/
|
|
18042
|
+
let createRollbackRoute;
|
|
18001
18043
|
try {
|
|
18002
18044
|
switch (action) {
|
|
18003
18045
|
case "unrecoverable-delete":
|
|
@@ -18017,6 +18059,8 @@ async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds
|
|
|
18017
18059
|
return;
|
|
18018
18060
|
case "orphan-flag":
|
|
18019
18061
|
if (op.changeType === "CREATE") {
|
|
18062
|
+
const orphanFlagProvisionedBy = effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy);
|
|
18063
|
+
createRollbackRoute = orphanFlagProvisionedBy;
|
|
18020
18064
|
delete stateResources[op.logicalId];
|
|
18021
18065
|
logger.info(` Rollback: Orphaning created resource ${op.logicalId} (--orphan)`);
|
|
18022
18066
|
await afterOp?.(op.logicalId);
|
|
@@ -18026,11 +18070,13 @@ async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds
|
|
|
18026
18070
|
operation: "CREATE",
|
|
18027
18071
|
logicalId: op.logicalId,
|
|
18028
18072
|
resourceType: op.resourceType,
|
|
18029
|
-
...
|
|
18073
|
+
...orphanFlagProvisionedBy && { provisionedBy: orphanFlagProvisionedBy }
|
|
18030
18074
|
});
|
|
18031
18075
|
} else logger.info(` Rollback: Leaving ${op.logicalId} at its new state (--orphan)`);
|
|
18032
18076
|
return;
|
|
18033
|
-
case "orphan-retain":
|
|
18077
|
+
case "orphan-retain": {
|
|
18078
|
+
const orphanProvisionedBy = effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy);
|
|
18079
|
+
createRollbackRoute = orphanProvisionedBy;
|
|
18034
18080
|
delete stateResources[op.logicalId];
|
|
18035
18081
|
logger.info(` Rollback: Leaving ${op.logicalId} (${op.resourceType}) in AWS (DeletionPolicy: Retain) — removed from state`);
|
|
18036
18082
|
await afterOp?.(op.logicalId);
|
|
@@ -18040,9 +18086,10 @@ async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds
|
|
|
18040
18086
|
operation: "CREATE",
|
|
18041
18087
|
logicalId: op.logicalId,
|
|
18042
18088
|
resourceType: op.resourceType,
|
|
18043
|
-
...
|
|
18089
|
+
...orphanProvisionedBy && { provisionedBy: orphanProvisionedBy }
|
|
18044
18090
|
});
|
|
18045
18091
|
return;
|
|
18092
|
+
}
|
|
18046
18093
|
case "delete":
|
|
18047
18094
|
case "delete-with-final-snapshot": {
|
|
18048
18095
|
if (!op.physicalId) {
|
|
@@ -18051,6 +18098,7 @@ async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds
|
|
|
18051
18098
|
return;
|
|
18052
18099
|
}
|
|
18053
18100
|
const deleteProvisionedBy = effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy);
|
|
18101
|
+
createRollbackRoute = deleteProvisionedBy;
|
|
18054
18102
|
const snapshotPolicy = action === "delete-with-final-snapshot";
|
|
18055
18103
|
const takeFinalSnapshot = snapshotPolicy && ctx.skipFinalSnapshot !== true;
|
|
18056
18104
|
let finalSnapshotIdentifier;
|
|
@@ -18073,7 +18121,7 @@ async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds
|
|
|
18073
18121
|
operation: "CREATE",
|
|
18074
18122
|
logicalId: op.logicalId,
|
|
18075
18123
|
resourceType: op.resourceType,
|
|
18076
|
-
...
|
|
18124
|
+
...deleteProvisionedBy && { provisionedBy: deleteProvisionedBy }
|
|
18077
18125
|
});
|
|
18078
18126
|
return;
|
|
18079
18127
|
}
|
|
@@ -18226,13 +18274,14 @@ async function replaySingle(op, stateResources, stackName, ctx, orphanLogicalIds
|
|
|
18226
18274
|
logger.warn(` Rollback failed for ${op.logicalId} (${op.changeType}): ${rollbackError instanceof Error ? rollbackError.message : String(rollbackError)}`);
|
|
18227
18275
|
logger.warn(" Continuing with remaining rollback operations...");
|
|
18228
18276
|
result.failures++;
|
|
18277
|
+
const failedRoute = createRollbackRoute ?? op.provisionedBy;
|
|
18229
18278
|
ctx.recordEvent?.({
|
|
18230
18279
|
eventType: "ROLLBACK_RESOURCE_FAILED",
|
|
18231
18280
|
stackName,
|
|
18232
18281
|
operation: op.changeType,
|
|
18233
18282
|
logicalId: op.logicalId,
|
|
18234
18283
|
resourceType: op.resourceType,
|
|
18235
|
-
...
|
|
18284
|
+
...failedRoute && { provisionedBy: failedRoute },
|
|
18236
18285
|
error: extractDeploymentEventError(rollbackError)
|
|
18237
18286
|
});
|
|
18238
18287
|
}
|
|
@@ -18269,6 +18318,7 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
18269
18318
|
}
|
|
18270
18319
|
const op = failedOps[i];
|
|
18271
18320
|
const action = classifyFailedOp(op, stateResources);
|
|
18321
|
+
let createRollbackRoute;
|
|
18272
18322
|
try {
|
|
18273
18323
|
switch (action) {
|
|
18274
18324
|
case "skip-failed-noop":
|
|
@@ -18282,7 +18332,9 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
18282
18332
|
logger.warn(` Rollback: cannot revert failed UPDATE of ${op.logicalId} — no previous state available, skipping`);
|
|
18283
18333
|
result.warnings++;
|
|
18284
18334
|
break;
|
|
18285
|
-
case "orphan-failed-create-retain":
|
|
18335
|
+
case "orphan-failed-create-retain": {
|
|
18336
|
+
const orphanProvisionedBy = effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy);
|
|
18337
|
+
createRollbackRoute = orphanProvisionedBy;
|
|
18286
18338
|
delete stateResources[op.logicalId];
|
|
18287
18339
|
logger.info(` Rollback: leaving partially-created ${op.logicalId} (${op.resourceType}) in AWS (DeletionPolicy: Retain) — removed from state`);
|
|
18288
18340
|
await options.afterOp?.(op.logicalId);
|
|
@@ -18292,12 +18344,14 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
18292
18344
|
operation: "CREATE",
|
|
18293
18345
|
logicalId: op.logicalId,
|
|
18294
18346
|
resourceType: op.resourceType,
|
|
18295
|
-
...
|
|
18347
|
+
...orphanProvisionedBy && { provisionedBy: orphanProvisionedBy }
|
|
18296
18348
|
});
|
|
18297
18349
|
break;
|
|
18350
|
+
}
|
|
18298
18351
|
case "delete-failed-create":
|
|
18299
18352
|
case "delete-failed-create-with-final-snapshot": {
|
|
18300
18353
|
const deleteProvisionedBy = effectiveProvisionedBy(stateResources[op.logicalId], op.provisionedBy);
|
|
18354
|
+
createRollbackRoute = deleteProvisionedBy;
|
|
18301
18355
|
const snapshotPolicy = action === "delete-failed-create-with-final-snapshot";
|
|
18302
18356
|
const takeFinalSnapshot = snapshotPolicy && ctx.skipFinalSnapshot !== true;
|
|
18303
18357
|
let finalSnapshotIdentifier;
|
|
@@ -18319,7 +18373,7 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
18319
18373
|
operation: "CREATE",
|
|
18320
18374
|
logicalId: op.logicalId,
|
|
18321
18375
|
resourceType: op.resourceType,
|
|
18322
|
-
...
|
|
18376
|
+
...deleteProvisionedBy && { provisionedBy: deleteProvisionedBy }
|
|
18323
18377
|
});
|
|
18324
18378
|
break;
|
|
18325
18379
|
}
|
|
@@ -18350,13 +18404,14 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
18350
18404
|
logger.warn(` Rollback failed for failed-op ${op.logicalId} (${op.changeType}): ${revertError instanceof Error ? revertError.message : String(revertError)}`);
|
|
18351
18405
|
result.failures++;
|
|
18352
18406
|
pending.add(op);
|
|
18407
|
+
const failedRoute = createRollbackRoute ?? op.provisionedBy;
|
|
18353
18408
|
ctx.recordEvent?.({
|
|
18354
18409
|
eventType: "ROLLBACK_RESOURCE_FAILED",
|
|
18355
18410
|
stackName,
|
|
18356
18411
|
operation: op.changeType,
|
|
18357
18412
|
logicalId: op.logicalId,
|
|
18358
18413
|
resourceType: op.resourceType,
|
|
18359
|
-
...
|
|
18414
|
+
...failedRoute && { provisionedBy: failedRoute },
|
|
18360
18415
|
error: extractDeploymentEventError(revertError)
|
|
18361
18416
|
});
|
|
18362
18417
|
}
|
|
@@ -18457,7 +18512,7 @@ const FLUSH_INTERVAL_MS = 2e3;
|
|
|
18457
18512
|
const FLUSH_EVENT_THRESHOLD = 50;
|
|
18458
18513
|
/** Build-time cdkd version, with a dev fallback for non-built contexts. */
|
|
18459
18514
|
function getCdkdVersion() {
|
|
18460
|
-
return "0.276.
|
|
18515
|
+
return "0.276.5";
|
|
18461
18516
|
}
|
|
18462
18517
|
/**
|
|
18463
18518
|
* Generate a time-sortable unique run id, e.g.
|
|
@@ -20568,5 +20623,5 @@ var DeployEngine = class {
|
|
|
20568
20623
|
};
|
|
20569
20624
|
|
|
20570
20625
|
//#endregion
|
|
20571
|
-
export {
|
|
20572
|
-
//# sourceMappingURL=deploy-engine-
|
|
20626
|
+
export { DagBuilder as $, AssetError as $t, red as A, resolveApp as At, isTerminationProtectionPropagationError as B, CFN_TEMPLATE_URL_LIMIT as Bt, isStatefulRecreateTargetSync as C, runDockerStreaming as Ct, cyan as D, synthesisStatusMessage as Dt, bold as E, Synthesizer as Et, ProviderRegistry as F, resolveStateBucketWithDefaultAndSource as Ft, normalizeAwsTagsToCfn as G, AssemblyReader as Gt, cfnRefValueFromPhysicalId as H, findLargeInlineResources as Ht, findActionableSilentDrops as I, resolveUseCdkBootstrapAssets as It, applyRoleArnIfSet as J, resolveBucketRegion as Jt, resolveExplicitPhysicalId as K, processStackMessages as Kt, CloudControlProvider as L, stateBucketExistenceConfirmed as Lt, IAMRoleProvider as M, resolveCaptureObservedState as Mt, collectInlinePolicyNamesManagedBySiblings as N, resolveSkipPrefix as Nt, gray as O, getDefaultStateBucketName as Ot, clearOnUpdateRemoval as P, resolveStateBucketWithDefault as Pt, isRetryableTransientError as Q, setAwsClients as Qt, slowCcOperationTimeoutMs as R, warnDeprecatedNoPrefixCliFlag as Rt, MULTI_REGION_RECREATE_BLOCKED_TYPES as S, __exportAll as Sn, runDockerForeground as St, formatResourceLine as T, getDockerImageBySourceHash as Tt, refStateLookupFromResource as U, uploadCfnTemplate as Ut, IntrinsicFunctionResolver as V, MIGRATE_TMP_PREFIX as Vt, WAFv2WebACLProvider as W, expectedOwnerParam as Wt, describeTypeWithThrottleRetry as X, getAwsClients as Xt, DiffCalculator as Y, AwsClients as Yt, withRetry as Z, resetAwsClients as Zt, createPreDeleteFinalSnapshot as _, SynthesisError as _n, validateAssetBucketName as _t, DeploymentEventsStore as a, LocalMigrateError as an, AssetPublisher as at, unsupportedFinalSnapshotError as b, normalizeAwsError as bn, formatDockerLoginError as bt, replayFailedOperations as c, MissingCdkCliError as cn, buildAssetRedirectMap as ct, IMPLICIT_DELETE_DEPENDENCIES as d, ProvisioningError as dn, rewriteTemplateAssetReferences as dt, CdkdError as en, TemplateParser as et, computeImplicitDeleteEdges as f, ResourceTimeoutError as fn, AssetModeResolver as ft, ccRoutedFinalSnapshotError as g, StateError as gn, parseBootstrapMarker as gt, buildFinalSnapshotIdentifier as h, StackTerminationProtectionError as hn, getBootstrapMarkerKey as ht, DeploymentEventsReader as i, LocalInvokeBuildError as in, shouldRetainResource as it, yellow as j, resolveAutoAssetStorage as jt, green as k, getLegacyStateBucketName as kt, replayRollback as l, NestedStackChildDirectDestroyError as ln, createAssetRedirectResolver as lt, PRE_DELETE_SNAPSHOT_TYPES as m, StackHasActiveImportsError as mn, ensureAssetStorage as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, DependencyError as nn, S3StateBackend as nt, planFailedOps as o, LocalStartServiceError as on, stringifyValue as ot, ATOMIC_FINAL_SNAPSHOT_TYPES as p, ResourceUpdateNotSupportedError as pn, BOOTSTRAP_MARKER_PREFIX as pt, assertRegionMatch as q, clearBucketRegionCache as qt, DeployEngine as r, DeployCancelledError as rn, rebuildClientForBucketRegion as rt, planRollback as s, LockError as sn, WorkGraph as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, ConfigError as tn, LockManager as tt, withResourceDeadline as u, PartialFailureError as un, loadPublishableAssetManifest as ut, isFinalSnapshotError as v, formatError as vn, validateContainerRepoName as vt, renderStatefulReason as w, AssetManifestLoader as wt, extractDeploymentEventError as x, withErrorHandling as xn, getDockerCmd as xt, refusesFinalSnapshot as y, isCdkdError as yn, buildDockerImage as yt, disableInstanceApiTermination as z, CFN_TEMPLATE_BODY_LIMIT as zt };
|
|
20627
|
+
//# sourceMappingURL=deploy-engine-BwPdeLbJ.js.map
|