@go-to-k/cdkd 0.283.36 → 0.284.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/{asg-provider-BruE_3F2.js → asg-provider-CMvwsTc7.js} +2 -2
- package/dist/{asg-provider-BruE_3F2.js.map → asg-provider-CMvwsTc7.js.map} +1 -1
- package/dist/cli.js +69 -19
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-Bhq_JPCc.js → deploy-engine-C7JEL0Mg.js} +113 -16
- package/dist/deploy-engine-C7JEL0Mg.js.map +1 -0
- package/dist/index.d.ts +11 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-Bhq_JPCc.js.map +0 -1
|
@@ -15269,7 +15269,7 @@ var CloudControlProvider = class {
|
|
|
15269
15269
|
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);
|
|
15270
15270
|
if (context?.removeProtection === true && resourceType === "AWS::AutoScaling::AutoScalingGroup") {
|
|
15271
15271
|
this.logger.debug(`Delegating protected AutoScalingGroup ${logicalId} delete to the SDK ASGProvider (Cloud Control cannot force-delete a protected ASG)`);
|
|
15272
|
-
const { ASGProvider } = await import("./asg-provider-
|
|
15272
|
+
const { ASGProvider } = await import("./asg-provider-CMvwsTc7.js").then((n) => n.n);
|
|
15273
15273
|
return await new ASGProvider().delete(logicalId, physicalId, resourceType, _properties, context);
|
|
15274
15274
|
}
|
|
15275
15275
|
const isProtectedEc2Instance = context?.removeProtection === true && resourceType === "AWS::EC2::Instance";
|
|
@@ -19839,18 +19839,27 @@ var IAMRoleProvider = class {
|
|
|
19839
19839
|
const reason = newRoleName !== physicalId ? "RoleName" : "Path";
|
|
19840
19840
|
this.logger.debug(`${reason} changed, replacing role: ${physicalId} (${reason}: ${reason === "RoleName" ? `${physicalId} -> ${newRoleName}` : `${oldPath} -> ${newPath}`})`);
|
|
19841
19841
|
const createResult = await this.create(logicalId, resourceType, properties);
|
|
19842
|
+
let orphanReason;
|
|
19842
19843
|
try {
|
|
19843
19844
|
const deleteResult = await this.delete(logicalId, physicalId, resourceType);
|
|
19844
|
-
if (deleteResult?.outcome === "skipped")
|
|
19845
|
+
if (deleteResult?.outcome === "skipped") {
|
|
19846
|
+
orphanReason = `old role ${physicalId} was not deleted: ${deleteResult.reason}`;
|
|
19847
|
+
this.logger.warn(`Skipped deleting old role ${physicalId} during replacement: ${deleteResult.reason}. The old role may be orphaned and require manual cleanup.`);
|
|
19848
|
+
}
|
|
19845
19849
|
} catch (error) {
|
|
19850
|
+
orphanReason = `old role ${physicalId} could not be deleted: ${String(error)}`;
|
|
19846
19851
|
this.logger.warn(`Failed to delete old role ${physicalId} during replacement: ${String(error)}. The old role may be orphaned and require manual cleanup.`);
|
|
19847
19852
|
}
|
|
19848
|
-
const
|
|
19853
|
+
const base = {
|
|
19849
19854
|
physicalId: createResult.physicalId,
|
|
19850
|
-
wasReplaced: true
|
|
19855
|
+
wasReplaced: true,
|
|
19856
|
+
...createResult.attributes ? { attributes: createResult.attributes } : {}
|
|
19851
19857
|
};
|
|
19852
|
-
|
|
19853
|
-
|
|
19858
|
+
return orphanReason !== void 0 ? {
|
|
19859
|
+
...base,
|
|
19860
|
+
outcome: "partial",
|
|
19861
|
+
reason: orphanReason
|
|
19862
|
+
} : base;
|
|
19854
19863
|
}
|
|
19855
19864
|
try {
|
|
19856
19865
|
const updateParams = { RoleName: physicalId };
|
|
@@ -21775,6 +21784,62 @@ function deleteSkippedMessage(logicalId, physicalId, reason, duringClause) {
|
|
|
21775
21784
|
return `cdkd could not address ${logicalId} (${physicalId}) ${duringClause}, so it was NOT deleted and may still exist: ${reason}`;
|
|
21776
21785
|
}
|
|
21777
21786
|
|
|
21787
|
+
//#endregion
|
|
21788
|
+
//#region src/deployment/update-outcome.ts
|
|
21789
|
+
/**
|
|
21790
|
+
* Consumption of {@link ResourceUpdateResult}'s `'partial'` arm (issue
|
|
21791
|
+
* [#1819](https://github.com/go-to-k/cdkd/issues/1819)) — the twin of
|
|
21792
|
+
* {@link ./delete-outcome.ts} for the UPDATE verb.
|
|
21793
|
+
*
|
|
21794
|
+
* `ResourceProvider.update` gained an outcome channel whose `'partial'` arm
|
|
21795
|
+
* means **the resource was updated, and something the update was responsible
|
|
21796
|
+
* for retiring survives and is no longer tracked by cdkd**. The four providers
|
|
21797
|
+
* that implement a REPLACEMENT inside `update()` by pairing create and delete
|
|
21798
|
+
* are the producers; before the channel existed they emitted a `logger.warn`
|
|
21799
|
+
* and the deploy exited 0 with the old resource alive and out of state.
|
|
21800
|
+
*
|
|
21801
|
+
* **The module must stay a LEAF — no imports beyond the type, ever.** Same
|
|
21802
|
+
* reason as `delete-outcome.ts`: the deploy engine, the drift-revert command
|
|
21803
|
+
* and the rollback executor all consume it, and those already sit on a dense
|
|
21804
|
+
* import ring. A helper that pulled anything else in would close it.
|
|
21805
|
+
*/
|
|
21806
|
+
/**
|
|
21807
|
+
* The `reason` of a `'partial'` update outcome, or `undefined` when the
|
|
21808
|
+
* provider reported a clean update (`{ outcome: 'updated' }` or the
|
|
21809
|
+
* back-compat omission ~80 providers still use).
|
|
21810
|
+
*
|
|
21811
|
+
* A function rather than an inline `result.outcome === 'partial'` test at
|
|
21812
|
+
* three call sites, so the back-compat reading lives in ONE place — the same
|
|
21813
|
+
* call {@link ./delete-outcome.ts} made, and for the same reason: the arm is
|
|
21814
|
+
* optional, so a caller comparing by hand can silently test nothing.
|
|
21815
|
+
*/
|
|
21816
|
+
function updatePartialReason(result) {
|
|
21817
|
+
if (!result || result.outcome !== "partial") return void 0;
|
|
21818
|
+
if (typeof result.reason !== "string") return UNSPECIFIED_PARTIAL_REASON;
|
|
21819
|
+
const trimmed = result.reason.trim();
|
|
21820
|
+
return trimmed === "" ? UNSPECIFIED_PARTIAL_REASON : trimmed;
|
|
21821
|
+
}
|
|
21822
|
+
/**
|
|
21823
|
+
* The one-line status suffix for a partial update, matching the destroy path's
|
|
21824
|
+
* `skipped (<reason>)` shape so the two verbs read the same way.
|
|
21825
|
+
*
|
|
21826
|
+
* Deliberately NOT the word `skipped`: the row's own resource WAS updated, and
|
|
21827
|
+
* `RESOURCE_SKIPPED`'s documented invariant is "the resource this row names was
|
|
21828
|
+
* not destroyed". Calling the row skipped would be false and would put the
|
|
21829
|
+
* event store at odds with its own contract.
|
|
21830
|
+
*/
|
|
21831
|
+
/**
|
|
21832
|
+
* Stand-in for a `'partial'` outcome whose producer supplied no usable reason.
|
|
21833
|
+
*
|
|
21834
|
+
* Says the cause is unknown rather than inventing one: the row still has to
|
|
21835
|
+
* announce that something survived, and a confident-sounding wrong cause is
|
|
21836
|
+
* worse than an admitted gap.
|
|
21837
|
+
*/
|
|
21838
|
+
const UNSPECIFIED_PARTIAL_REASON = "provider reported a partial update without a reason";
|
|
21839
|
+
function updatePartialMessage(reason) {
|
|
21840
|
+
return `partial (${reason})`;
|
|
21841
|
+
}
|
|
21842
|
+
|
|
21778
21843
|
//#endregion
|
|
21779
21844
|
//#region src/deployment/rollback-executor.ts
|
|
21780
21845
|
/**
|
|
@@ -22478,7 +22543,9 @@ async function replaySingle(op, stateResources, stackName, ctx, resolver, orphan
|
|
|
22478
22543
|
currentProps ?? {}
|
|
22479
22544
|
], op.logicalId, logger, isInterrupted);
|
|
22480
22545
|
stateResources[op.logicalId] = redactRollbackRecord(recordAfterRollbackUpdate(previousState, revertResult), secrets, previousState.properties);
|
|
22481
|
-
|
|
22546
|
+
const rollbackPartial = updatePartialReason(revertResult);
|
|
22547
|
+
if (rollbackPartial !== void 0) logger.warn(` Rollback: ${op.logicalId} restored, ${updatePartialMessage(rollbackPartial)}`);
|
|
22548
|
+
else logger.info(` Rollback: ${op.logicalId} restored successfully`);
|
|
22482
22549
|
await afterOp?.(op.logicalId);
|
|
22483
22550
|
ctx.recordEvent?.({
|
|
22484
22551
|
eventType: "ROLLBACK_RESOURCE_SUCCEEDED",
|
|
@@ -22486,7 +22553,8 @@ async function replaySingle(op, stateResources, stackName, ctx, resolver, orphan
|
|
|
22486
22553
|
operation: "UPDATE",
|
|
22487
22554
|
logicalId: op.logicalId,
|
|
22488
22555
|
resourceType: op.resourceType,
|
|
22489
|
-
...op.provisionedBy && { provisionedBy: op.provisionedBy }
|
|
22556
|
+
...op.provisionedBy && { provisionedBy: op.provisionedBy },
|
|
22557
|
+
...rollbackPartial !== void 0 && { reason: rollbackPartial }
|
|
22490
22558
|
});
|
|
22491
22559
|
return;
|
|
22492
22560
|
}
|
|
@@ -22618,7 +22686,9 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
22618
22686
|
attemptedProps ?? {}
|
|
22619
22687
|
], op.logicalId, logger, options.isInterrupted);
|
|
22620
22688
|
stateResources[op.logicalId] = redactRollbackRecord(recordAfterRollbackUpdate(prev, revertFailedResult), secrets, prev.properties);
|
|
22621
|
-
|
|
22689
|
+
const revertFailedPartial = updatePartialReason(revertFailedResult);
|
|
22690
|
+
if (revertFailedPartial !== void 0) logger.warn(` Rollback: ${op.logicalId} reverted, ${updatePartialMessage(revertFailedPartial)}`);
|
|
22691
|
+
else logger.info(` Rollback: ${op.logicalId} reverted successfully`);
|
|
22622
22692
|
await options.afterOp?.(op.logicalId);
|
|
22623
22693
|
ctx.recordEvent?.({
|
|
22624
22694
|
eventType: "ROLLBACK_RESOURCE_SUCCEEDED",
|
|
@@ -22626,7 +22696,8 @@ async function replayFailedOperations(failedOps, stateResources, stackName, ctx,
|
|
|
22626
22696
|
operation: "UPDATE",
|
|
22627
22697
|
logicalId: op.logicalId,
|
|
22628
22698
|
resourceType: op.resourceType,
|
|
22629
|
-
...op.provisionedBy && { provisionedBy: op.provisionedBy }
|
|
22699
|
+
...op.provisionedBy && { provisionedBy: op.provisionedBy },
|
|
22700
|
+
...revertFailedPartial !== void 0 && { reason: revertFailedPartial }
|
|
22630
22701
|
});
|
|
22631
22702
|
break;
|
|
22632
22703
|
}
|
|
@@ -22743,7 +22814,7 @@ const FLUSH_INTERVAL_MS = 2e3;
|
|
|
22743
22814
|
const FLUSH_EVENT_THRESHOLD = 50;
|
|
22744
22815
|
/** Build-time cdkd version, with a dev fallback for non-built contexts. */
|
|
22745
22816
|
function getCdkdVersion() {
|
|
22746
|
-
return "0.
|
|
22817
|
+
return "0.284.0";
|
|
22747
22818
|
}
|
|
22748
22819
|
/**
|
|
22749
22820
|
* Generate a time-sortable unique run id, e.g.
|
|
@@ -23854,6 +23925,7 @@ var DeployEngine = class {
|
|
|
23854
23925
|
updated: 0,
|
|
23855
23926
|
deleted: 0,
|
|
23856
23927
|
deleteSkipped: 0,
|
|
23928
|
+
updatePartial: 0,
|
|
23857
23929
|
unchanged: Object.keys(currentState.resources).length,
|
|
23858
23930
|
durationMs: Date.now() - startTime,
|
|
23859
23931
|
outputs: this.buildDisplayOutputs(template, persistedOutputs),
|
|
@@ -23872,6 +23944,7 @@ var DeployEngine = class {
|
|
|
23872
23944
|
updated: updateChanges.length,
|
|
23873
23945
|
deleted: deleteChanges.length,
|
|
23874
23946
|
deleteSkipped: 0,
|
|
23947
|
+
updatePartial: 0,
|
|
23875
23948
|
unchanged: this.diffCalculator.filterByType(changes, "NO_CHANGE").length,
|
|
23876
23949
|
durationMs: Date.now() - startTime,
|
|
23877
23950
|
attributeFallbackCount: this.resolver.getPhysicalIdFallbackCount()
|
|
@@ -23895,6 +23968,7 @@ var DeployEngine = class {
|
|
|
23895
23968
|
updated: actualCounts.updated,
|
|
23896
23969
|
deleted: actualCounts.deleted,
|
|
23897
23970
|
deleteSkipped: actualCounts.deleteSkipped,
|
|
23971
|
+
updatePartial: actualCounts.updatePartial,
|
|
23898
23972
|
unchanged: unchangedCount,
|
|
23899
23973
|
durationMs,
|
|
23900
23974
|
outputs: this.buildDisplayOutputs(template, newState.outputs ?? {}),
|
|
@@ -23929,7 +24003,8 @@ var DeployEngine = class {
|
|
|
23929
24003
|
updated: 0,
|
|
23930
24004
|
deleted: 0,
|
|
23931
24005
|
skipped: 0,
|
|
23932
|
-
deleteSkipped: 0
|
|
24006
|
+
deleteSkipped: 0,
|
|
24007
|
+
updatePartial: 0
|
|
23933
24008
|
};
|
|
23934
24009
|
const completedOperations = [];
|
|
23935
24010
|
const failedOperations = [];
|
|
@@ -24348,9 +24423,14 @@ var DeployEngine = class {
|
|
|
24348
24423
|
...labelRouting && { provisionedBy: labelRouting }
|
|
24349
24424
|
});
|
|
24350
24425
|
let deleteSkipped;
|
|
24426
|
+
let updatePartial;
|
|
24427
|
+
const physicalIdBeforeUpdate = stateResources[logicalId]?.physicalId;
|
|
24428
|
+
const provisionedByBeforeUpdate = stateResources[logicalId]?.provisionedBy;
|
|
24351
24429
|
try {
|
|
24352
24430
|
await withResourceDeadline(async () => {
|
|
24353
|
-
|
|
24431
|
+
const bodyResult = await this.provisionResourceBody(logicalId, change, stateResources, stackName, template, parameterValues, conditions, counts, progress);
|
|
24432
|
+
deleteSkipped = bodyResult?.deleteSkipped;
|
|
24433
|
+
updatePartial = bodyResult?.updatePartial;
|
|
24354
24434
|
}, {
|
|
24355
24435
|
warnAfterMs,
|
|
24356
24436
|
timeoutMs,
|
|
@@ -24378,6 +24458,17 @@ var DeployEngine = class {
|
|
|
24378
24458
|
});
|
|
24379
24459
|
return { deleteSkipped };
|
|
24380
24460
|
}
|
|
24461
|
+
if (updatePartial !== void 0) this.recordEvent({
|
|
24462
|
+
eventType: "RESOURCE_SKIPPED",
|
|
24463
|
+
stackName,
|
|
24464
|
+
operation: eventOp,
|
|
24465
|
+
logicalId,
|
|
24466
|
+
resourceType,
|
|
24467
|
+
...provisionedByBeforeUpdate ? { provisionedBy: provisionedByBeforeUpdate } : labelRouting && { provisionedBy: labelRouting },
|
|
24468
|
+
...physicalIdBeforeUpdate && { physicalId: physicalIdBeforeUpdate },
|
|
24469
|
+
reason: updatePartial,
|
|
24470
|
+
durationMs: Date.now() - resourceStartedAt
|
|
24471
|
+
});
|
|
24381
24472
|
this.recordEvent({
|
|
24382
24473
|
eventType: "RESOURCE_SUCCEEDED",
|
|
24383
24474
|
stackName,
|
|
@@ -24809,10 +24900,16 @@ var DeployEngine = class {
|
|
|
24809
24900
|
};
|
|
24810
24901
|
const updateCaptureSiblings = await this.buildObservedCaptureSiblings(resourceType, logicalId, result.physicalId, template, stateResources, stackName, parameterValues, conditions);
|
|
24811
24902
|
this.kickOffObservedCapture(updateProvider, logicalId, result.physicalId, resourceType, resolvedProps, updateCaptureSiblings);
|
|
24812
|
-
|
|
24903
|
+
const updatePartial = updatePartialReason(result);
|
|
24904
|
+
if (counts) if (updatePartial !== void 0) counts.updatePartial++;
|
|
24905
|
+
else counts.updated++;
|
|
24813
24906
|
if (progress) progress.current++;
|
|
24814
24907
|
const updatePrefix = progress ? `[${progress.current}/${progress.total}] ` : " ";
|
|
24815
24908
|
renderer.removeTask(logicalId);
|
|
24909
|
+
if (updatePartial !== void 0) {
|
|
24910
|
+
this.logger.warn(`${updatePrefix}${formatResourceLine("updated", logicalId, resourceType)} ` + updatePartialMessage(updatePartial));
|
|
24911
|
+
return { updatePartial };
|
|
24912
|
+
}
|
|
24816
24913
|
this.logger.info(`${updatePrefix}${formatResourceLine("updated", logicalId, resourceType)}`);
|
|
24817
24914
|
}
|
|
24818
24915
|
break;
|
|
@@ -25184,5 +25281,5 @@ var DeployEngine = class {
|
|
|
25184
25281
|
};
|
|
25185
25282
|
|
|
25186
25283
|
//#endregion
|
|
25187
|
-
export {
|
|
25188
|
-
//# sourceMappingURL=deploy-engine-
|
|
25284
|
+
export { IntrinsicFunctionResolver as $, StackTerminationProtectionError as $n, buildDenyExternalAccessPolicy as $t, formatResourceLine as A, processStackMessages as An, withRetry as At, isExportAliasCollision as B, DependencyError as Bn, buildAssetRedirectMap as Bt, refusesFinalSnapshot as C, findLargeInlineResources as Cn, s3BucketDualStackDomainName as Ct, MULTI_REGION_RECREATE_BLOCKED_TYPES as D, canonicalizeRegion as Dn, DiffCalculator as Dt, extractDeploymentEventError as E, PARTITION_TABLE as En, applyRoleArnIfSet as Et, red as F, resetAwsClients as Fn, rebuildClientForBucketRegion as Ft, clearOnUpdateRemoval as G, LockError as Gn, stripControlChars as Gt, stateKeySecretExposure as H, LocalInvokeBuildError as Hn, loadPublishableAssetManifest as Ht, yellow as I, setAwsClients as In, shouldRetainResource as It, findSilentDropProperties as J, PartialFailureError as Jn, ensureAssetStorage as Jt, ProviderRegistry as K, MissingCdkCliError as Kn, AssetModeResolver as Kt, collectDeclaredOutputNames as L, AssetError as Ln, AssetPublisher as Lt, cyan as M, resolveBucketRegion as Mn, TemplateParser as Mt, gray as N, AwsClients as Nn, LockManager as Nt, isStatefulRecreateTargetSync as O, derivePartitionAndUrlSuffix as On, INTRINSIC_KEYS as Ot, green as P, getAwsClients as Pn, S3StateBackend as Pt, isTerminationProtectionPropagationError as Q, StackHasActiveImportsError as Qn, validateContainerRepoName as Qt, collectPublishedOutputNames as R, CdkdError as Rn, stringifyValue as Rt, isFinalSnapshotError as S, MIGRATE_TMP_PREFIX as Sn, s3BucketDomainName as St, makeCanonicalizePropertiesFn as T, expectedOwnerParam as Tn, s3BucketWebsiteUrl as Tt, IAMRoleProvider as U, LocalMigrateError as Un, rewriteTemplateAssetReferences as Ut, secretBearingStateKeyWarning as V, DeployCancelledError as Vn, createAssetRedirectResolver as Vt, collectInlinePolicyNamesManagedBySiblings as W, LocalStartServiceError as Wn, escapeRegExp$1 as Wt, slowCcOperationTimeoutMs as X, ResourceTimeoutError as Xn, parseBootstrapMarker as Xt, CloudControlProvider as Y, ProvisioningError as Yn, getBootstrapMarkerKey as Yt, disableInstanceApiTermination as Z, ResourceUpdateNotSupportedError as Zn, validateAssetBucketName as Zt, ATOMIC_FINAL_SNAPSHOT_TYPES as _, resolveUseCdkBootstrapAssets as _n, TEMPLATE_SOURCED_RULES as _t, DeploymentEventsStore as a, AssetManifestLoader as an, withErrorHandling as ar, resolveExplicitPhysicalId as at, ccRoutedFinalSnapshotError as b, CFN_TEMPLATE_BODY_LIMIT as bn, scrubResourceRecord as bt, replayFailedOperations as c, synthesisStatusMessage as cn, isThrottlingError as cr, configBooleanRefusal as ct, updatePartialReason as d, resolveApp as dn, replayWarn as dt, buildDockerImage as en, StateError as er, cfnRefValueFromPhysicalId as et, UNSPECIFIED_SKIP_REASON as f, resolveAutoAssetStorage as fn, requireConfigArray as ft, computeImplicitDeleteEdges as g, resolveStateBucketWithDefaultAndSource as gn, STATE_SOURCED_READBACK_RULES as gt, IMPLICIT_DELETE_DEPENDENCIES as h, resolveStateBucketWithDefault as hn, STATE_SOURCED_CROSS_GENERATION_RULES as ht, DeploymentEventsReader as i, runDockerStreaming as in, normalizeAwsError as ir, normalizeAwsTagsToCfn as it, bold as j, clearBucketRegionCache as jn, DagBuilder as jt, renderStatefulReason as k, AssemblyReader as kn, describeTypeWithThrottleRetry as kt, replayRollback as l, getDefaultStateBucketName as ln, markNonRetryable as lr, configStringRefusal as lt, withResourceDeadline as m, resolveSkipPrefix as mn, requireConfigString as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, getDockerCmd as nn, formatError as nr, refStateLookupFromResource as nt, planFailedOps as o, getDockerImageBySourceHash as on, isMarkedNonRetryable as or, assertRegionMatch as ot, deleteSkipReason as p, resolveCaptureObservedState as pn, requireConfigObject as pt, findActionableSilentDrops as q, NestedStackChildDirectDestroyError as qn, BOOTSTRAP_MARKER_PREFIX as qt, DeployEngine as r, runDockerForeground as rn, isCdkdError as rr, WAFv2WebACLProvider as rt, planRollback as s, Synthesizer as sn, isRetryableTransientError as sr, coerceCfnBoolean as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, formatDockerLoginError as tn, SynthesisError as tr, getAccountInfo as tt, updatePartialMessage as u, getLegacyStateBucketName as un, __exportAll as ur, readConfigString as ut, PRE_DELETE_SNAPSHOT_TYPES as v, stateBucketExistenceConfirmed as vn, maskSecretsInText as vt, unsupportedFinalSnapshotError as w, uploadCfnTemplate as wn, s3BucketRegionalDomainName as wt, createPreDeleteFinalSnapshot as x, CFN_TEMPLATE_URL_LIMIT as xn, s3BucketArn as xt, buildFinalSnapshotIdentifier as y, warnDeprecatedNoPrefixCliFlag as yn, redactSecretsForState as yt, exportAliasCollisionScrubWarning as z, ConfigError as zn, WorkGraph as zt };
|
|
25285
|
+
//# sourceMappingURL=deploy-engine-C7JEL0Mg.js.map
|