@go-to-k/cdkd 0.284.50 → 0.284.52
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-tVXU-L28.js → asg-provider-DYnIz-Gy.js} +2 -2
- package/dist/{asg-provider-tVXU-L28.js.map → asg-provider-DYnIz-Gy.js.map} +1 -1
- package/dist/cli.js +2 -2
- package/dist/{deploy-engine-tBUjmzHn.js → deploy-engine-DxboGDr4.js} +91 -21
- package/dist/deploy-engine-DxboGDr4.js.map +1 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/{program-CMiO_i__.js → program-BJ8R04vD.js} +222 -19
- package/dist/{program-CMiO_i__.js.map → program-BJ8R04vD.js.map} +1 -1
- package/dist/{version-pYF8nPNw.js → version-BXmUXkY2.js} +2 -2
- package/dist/{version-pYF8nPNw.js.map → version-BXmUXkY2.js.map} +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-tBUjmzHn.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as getLiveRenderer, d as generateResourceNameWithFallback, f as getCurrentStackName, h as withStackName, l as applyDefaultNameForFallback, n as getLogger, p as looksLikeCdkdGeneratedName, u as generateResourceName } from "./logger-zRrlbaQt.js";
|
|
2
|
-
import { t as getCdkdVersion } from "./version-
|
|
2
|
+
import { t as getCdkdVersion } from "./version-BXmUXkY2.js";
|
|
3
3
|
import { randomUUID } from "node:crypto";
|
|
4
4
|
import { CreateBucketCommand, DeleteObjectCommand, DeleteObjectsCommand, GetBucketLocationCommand, GetObjectCommand, HeadBucketCommand, HeadObjectCommand, ListObjectsV2Command, NoSuchKey, PutBucketEncryptionCommand, PutBucketPolicyCommand, PutObjectCommand, PutPublicAccessBlockCommand, S3Client, S3ServiceException } from "@aws-sdk/client-s3";
|
|
5
5
|
import { CloudControlClient, CreateResourceCommand, DeleteResourceCommand, GetResourceCommand, GetResourceRequestStatusCommand, ListResourcesCommand, UpdateResourceCommand } from "@aws-sdk/client-cloudcontrol";
|
|
@@ -6938,7 +6938,8 @@ const STATE_SCHEMA_VERSIONS_READABLE = [
|
|
|
6938
6938
|
5,
|
|
6939
6939
|
6,
|
|
6940
6940
|
7,
|
|
6941
|
-
8
|
|
6941
|
+
8,
|
|
6942
|
+
9
|
|
6942
6943
|
];
|
|
6943
6944
|
/**
|
|
6944
6945
|
* Returns true when a recorded `DeletionPolicy` should prevent cdkd from
|
|
@@ -6954,6 +6955,50 @@ const STATE_SCHEMA_VERSIONS_READABLE = [
|
|
|
6954
6955
|
function shouldRetainResource(deletionPolicy) {
|
|
6955
6956
|
return deletionPolicy === "Retain" || deletionPolicy === "RetainExceptOnCreate";
|
|
6956
6957
|
}
|
|
6958
|
+
/**
|
|
6959
|
+
* The keys of `state.outputs` an `Fn::ImportValue` may bind to (issue
|
|
6960
|
+
* [#2193](https://github.com/go-to-k/cdkd/issues/2193)) — THE predicate
|
|
6961
|
+
* behind "what does this stack export". Four readers used to answer that
|
|
6962
|
+
* by walking `outputs` wholesale (the exports index on update and on
|
|
6963
|
+
* rebuild, the resolver's state scan, and the local-command loader's
|
|
6964
|
+
* `Fn::ImportValue` fallback scan), and each therefore took a plain Output
|
|
6965
|
+
* name for an export; they all go through here now, so the rule cannot
|
|
6966
|
+
* drift between them.
|
|
6967
|
+
*
|
|
6968
|
+
* A record whose `exportNames` is unknown (pre-v9, or a v9 partial save that
|
|
6969
|
+
* carried a pre-v9 bag forward) keeps the legacy rule — every key — until
|
|
6970
|
+
* its next deploy writes the set. A known set is intersected with the bag:
|
|
6971
|
+
* an alias whose value did not resolve publishes nothing, and a name the
|
|
6972
|
+
* bag does not hold cannot be served.
|
|
6973
|
+
*
|
|
6974
|
+
* `outputs` is typed required but every consumer treats it as optional (a
|
|
6975
|
+
* state file may simply have none), so it is read defensively here too.
|
|
6976
|
+
*/
|
|
6977
|
+
function importableOutputKeys(state) {
|
|
6978
|
+
const outputs = state.outputs ?? {};
|
|
6979
|
+
if (state.exportNames === void 0) return Object.keys(outputs);
|
|
6980
|
+
return state.exportNames.filter((name) => Object.hasOwn(outputs, name));
|
|
6981
|
+
}
|
|
6982
|
+
/** `state.outputs` narrowed to its {@link importableOutputKeys}. */
|
|
6983
|
+
function importableOutputs(state) {
|
|
6984
|
+
const outputs = state.outputs ?? {};
|
|
6985
|
+
const picked = Object.create(null);
|
|
6986
|
+
for (const name of importableOutputKeys(state)) picked[name] = outputs[name];
|
|
6987
|
+
return picked;
|
|
6988
|
+
}
|
|
6989
|
+
/**
|
|
6990
|
+
* The `exportNames` half of a record whose `outputs` bag is being CARRIED
|
|
6991
|
+
* FORWARD unchanged rather than re-resolved (a partial save on a failed
|
|
6992
|
+
* deploy, `cdkd import` over an existing record). The two travel together:
|
|
6993
|
+
* carrying the bag without its set would turn a known-exports record back
|
|
6994
|
+
* into a "not known" one, and inventing `[]` for a pre-v9 bag would deny
|
|
6995
|
+
* every consumer of a stack that never had the chance to write the set.
|
|
6996
|
+
* Spread this next to `outputs: previous.outputs` — never write the field
|
|
6997
|
+
* by hand at such a site.
|
|
6998
|
+
*/
|
|
6999
|
+
function exportNamesCarriedFrom(previous) {
|
|
7000
|
+
return previous.exportNames === void 0 ? {} : { exportNames: previous.exportNames };
|
|
7001
|
+
}
|
|
6957
7002
|
|
|
6958
7003
|
//#endregion
|
|
6959
7004
|
//#region src/types/rollback-journal.ts
|
|
@@ -7327,7 +7372,7 @@ var S3StateBackend = class {
|
|
|
7327
7372
|
const { expectedEtag, migrateLegacy } = options;
|
|
7328
7373
|
const body = {
|
|
7329
7374
|
...state,
|
|
7330
|
-
version:
|
|
7375
|
+
version: 9,
|
|
7331
7376
|
stackName,
|
|
7332
7377
|
region
|
|
7333
7378
|
};
|
|
@@ -16559,7 +16604,7 @@ var IntrinsicFunctionResolver = class IntrinsicFunctionResolver {
|
|
|
16559
16604
|
continue;
|
|
16560
16605
|
}
|
|
16561
16606
|
const { state } = stateData;
|
|
16562
|
-
if (state.
|
|
16607
|
+
if (importableOutputKeys(state).includes(exportName)) {
|
|
16563
16608
|
const value = state.outputs[exportName];
|
|
16564
16609
|
this.logger.info(`Resolved Fn::ImportValue: ${loggedExportName} (from stack: ${refStack} / ${lookupRegion}; ${carriesDynamicReference(value) ? "redacted dynamic reference" : "literal value"})`);
|
|
16565
16610
|
if (context.exportIndex) context.exportIndex.patchEntry(exportName, {
|
|
@@ -18231,7 +18276,7 @@ var CloudControlProvider = class {
|
|
|
18231
18276
|
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);
|
|
18232
18277
|
if (context?.removeProtection === true && resourceType === "AWS::AutoScaling::AutoScalingGroup") {
|
|
18233
18278
|
this.logger.debug(`Delegating protected AutoScalingGroup ${logicalId} delete to the SDK ASGProvider (Cloud Control cannot force-delete a protected ASG)`);
|
|
18234
|
-
const { ASGProvider } = await import("./asg-provider-
|
|
18279
|
+
const { ASGProvider } = await import("./asg-provider-DYnIz-Gy.js").then((n) => n.n);
|
|
18235
18280
|
return await new ASGProvider().delete(logicalId, physicalId, resourceType, _properties, context);
|
|
18236
18281
|
}
|
|
18237
18282
|
const isProtectedEc2Instance = context?.removeProtection === true && resourceType === "AWS::EC2::Instance";
|
|
@@ -27658,6 +27703,17 @@ var DeployEngine = class {
|
|
|
27658
27703
|
*/
|
|
27659
27704
|
outputsTemplateSource = {};
|
|
27660
27705
|
/**
|
|
27706
|
+
* The export aliases the last `resolveOutputs` pass WROTE into its bag
|
|
27707
|
+
* (issue #2193) — exactly the keys `outputs[exportName] = value` landed on,
|
|
27708
|
+
* so an alias the pass refused (secret-bearing name, collision with a
|
|
27709
|
+
* published output name) or skipped (unresolved value, condition-suppressed
|
|
27710
|
+
* output) is not in it. Persisted as `StackState.exportNames` by the saves
|
|
27711
|
+
* that persist that bag, and the set the exports index is fed from. Reset
|
|
27712
|
+
* at the top of every `resolveOutputs`, so it is only meaningful right
|
|
27713
|
+
* after that call returns — read it there, not later.
|
|
27714
|
+
*/
|
|
27715
|
+
resolvedExportNames = [];
|
|
27716
|
+
/**
|
|
27661
27717
|
* Whether {@link outputsTemplateSource} may be used to POSITION the outputs
|
|
27662
27718
|
* redaction. False once an outputs pass threw partway: the post-loop
|
|
27663
27719
|
* name pass never ran, so the bag holds only the alias keys written before
|
|
@@ -28033,11 +28089,12 @@ var DeployEngine = class {
|
|
|
28033
28089
|
renderer.start();
|
|
28034
28090
|
const currentStateData = await this.stateBackend.getState(stackName, this.stackRegion);
|
|
28035
28091
|
const currentState = currentStateData?.state ?? {
|
|
28036
|
-
version:
|
|
28092
|
+
version: 9,
|
|
28037
28093
|
region: this.stackRegion,
|
|
28038
28094
|
stackName,
|
|
28039
28095
|
resources: {},
|
|
28040
28096
|
outputs: {},
|
|
28097
|
+
exportNames: [],
|
|
28041
28098
|
lastModified: Date.now()
|
|
28042
28099
|
};
|
|
28043
28100
|
const currentEtag = currentStateData?.etag;
|
|
@@ -28094,16 +28151,20 @@ var DeployEngine = class {
|
|
|
28094
28151
|
const resolvedOutputs = this.redactOutputs(await this.resolveOutputs(effectiveTemplate, currentState.resources, stackName, parameterValues, conditions));
|
|
28095
28152
|
const resolutionFailed = Object.values(resolvedOutputs).some((v) => v === void 0);
|
|
28096
28153
|
const outputsChanged = !resolutionFailed && !outputMapsEqual(persistedOutputs, resolvedOutputs);
|
|
28154
|
+
const currentEffectiveExports = new Set(importableOutputKeys(currentState));
|
|
28155
|
+
const resolvedExportSet = new Set(this.resolvedExportNames);
|
|
28156
|
+
const exportSetChanged = !resolutionFailed && (currentEffectiveExports.size !== resolvedExportSet.size || [...resolvedExportSet].some((k) => !currentEffectiveExports.has(k)));
|
|
28097
28157
|
if (resolutionFailed && !outputMapsEqual(persistedOutputs, resolvedOutputs)) this.logger.warn("Outputs changed but one or more could not be resolved; keeping the previously persisted outputs. A downstream Fn::ImportValue may fail until the next deploy.");
|
|
28098
28158
|
const observedRefresh = this.observedCaptureTasks.size > 0;
|
|
28099
28159
|
if (observedRefresh) await this.drainObservedCaptures(currentState.resources);
|
|
28100
|
-
if (observedRefresh || outputsChanged) try {
|
|
28160
|
+
if (observedRefresh || outputsChanged || exportSetChanged) try {
|
|
28101
28161
|
const refreshedState = {
|
|
28102
|
-
version:
|
|
28162
|
+
version: 9,
|
|
28103
28163
|
region: this.stackRegion,
|
|
28104
28164
|
stackName: currentState.stackName,
|
|
28105
28165
|
resources: currentState.resources,
|
|
28106
28166
|
outputs: outputsChanged ? resolvedOutputs : persistedOutputs,
|
|
28167
|
+
...resolutionFailed ? exportNamesCarriedFrom(currentState) : { exportNames: [...this.resolvedExportNames] },
|
|
28107
28168
|
...crossStackReadsForPartialSave(currentState, this.recordedImports, this.recordedOutputReads),
|
|
28108
28169
|
lastModified: Date.now()
|
|
28109
28170
|
};
|
|
@@ -28111,10 +28172,11 @@ var DeployEngine = class {
|
|
|
28111
28172
|
if (currentEtag !== void 0) saveOptions.expectedEtag = currentEtag;
|
|
28112
28173
|
if (migrationPending) saveOptions.migrateLegacy = true;
|
|
28113
28174
|
await this.stateBackend.saveState(stackName, this.stackRegion, this.withParentInfo(refreshedState), saveOptions);
|
|
28114
|
-
if (outputsChanged) {
|
|
28115
|
-
persistedOutputs =
|
|
28116
|
-
this.logger.info("Persisted Outputs-only change (no resource diff).");
|
|
28117
|
-
|
|
28175
|
+
if (outputsChanged || exportSetChanged) {
|
|
28176
|
+
persistedOutputs = refreshedState.outputs;
|
|
28177
|
+
if (outputsChanged) this.logger.info("Persisted Outputs-only change (no resource diff).");
|
|
28178
|
+
else this.logger.debug("Persisted export-set change (no outputs-value diff, no-change path, #2193)");
|
|
28179
|
+
if (this.exportIndexStore) await this.exportIndexStore.updateForStack(stackName, this.stackRegion, importableOutputs(refreshedState));
|
|
28118
28180
|
} else this.logger.debug("Persisted refreshed observedProperties (no-change path)");
|
|
28119
28181
|
} catch (saveError) {
|
|
28120
28182
|
this.logger.warn(`Failed to persist no-change state update: ${saveError instanceof Error ? saveError.message : String(saveError)} — drift baseline / outputs will be re-resolved on next deploy.`);
|
|
@@ -28161,7 +28223,7 @@ var DeployEngine = class {
|
|
|
28161
28223
|
await this.drainObservedCaptures(newState.resources);
|
|
28162
28224
|
const newEtag = await this.stateBackend.saveState(stackName, this.stackRegion, this.withParentInfo(newState));
|
|
28163
28225
|
this.logger.debug(`State saved (ETag: ${newEtag})`);
|
|
28164
|
-
await Promise.all([this.deleteRollbackJournalBestEffort(stackName), this.exportIndexStore ? this.exportIndexStore.updateForStack(stackName, this.stackRegion, newState
|
|
28226
|
+
await Promise.all([this.deleteRollbackJournalBestEffort(stackName), this.exportIndexStore ? this.exportIndexStore.updateForStack(stackName, this.stackRegion, importableOutputs(newState)) : Promise.resolve()]);
|
|
28165
28227
|
const durationMs = Date.now() - startTime;
|
|
28166
28228
|
const unchangedCount = this.diffCalculator.filterByType(changes, "NO_CHANGE").length + actualCounts.skipped;
|
|
28167
28229
|
return {
|
|
@@ -28219,11 +28281,12 @@ var DeployEngine = class {
|
|
|
28219
28281
|
saveChain = saveChain.then(async () => {
|
|
28220
28282
|
try {
|
|
28221
28283
|
const partialState = {
|
|
28222
|
-
version:
|
|
28284
|
+
version: 9,
|
|
28223
28285
|
region: this.stackRegion,
|
|
28224
28286
|
stackName: currentState.stackName,
|
|
28225
28287
|
resources: newResources,
|
|
28226
28288
|
outputs: currentState.outputs,
|
|
28289
|
+
...exportNamesCarriedFrom(currentState),
|
|
28227
28290
|
...crossStackReadsForPartialSave(currentState, this.recordedImports, this.recordedOutputReads),
|
|
28228
28291
|
lastModified: Date.now()
|
|
28229
28292
|
};
|
|
@@ -28349,11 +28412,12 @@ var DeployEngine = class {
|
|
|
28349
28412
|
const initialDeploy = currentEtag === void 0;
|
|
28350
28413
|
try {
|
|
28351
28414
|
const preRollbackState = {
|
|
28352
|
-
version:
|
|
28415
|
+
version: 9,
|
|
28353
28416
|
region: this.stackRegion,
|
|
28354
28417
|
stackName: currentState.stackName,
|
|
28355
28418
|
resources: newResources,
|
|
28356
28419
|
outputs: currentState.outputs,
|
|
28420
|
+
...exportNamesCarriedFrom(currentState),
|
|
28357
28421
|
...crossStackReadsForPartialSave(currentState, this.recordedImports, this.recordedOutputReads),
|
|
28358
28422
|
lastModified: Date.now()
|
|
28359
28423
|
};
|
|
@@ -28384,11 +28448,12 @@ var DeployEngine = class {
|
|
|
28384
28448
|
}
|
|
28385
28449
|
try {
|
|
28386
28450
|
const postRollbackState = {
|
|
28387
|
-
version:
|
|
28451
|
+
version: 9,
|
|
28388
28452
|
region: this.stackRegion,
|
|
28389
28453
|
stackName: currentState.stackName,
|
|
28390
28454
|
resources: newResources,
|
|
28391
28455
|
outputs: currentState.outputs,
|
|
28456
|
+
...exportNamesCarriedFrom(currentState),
|
|
28392
28457
|
...crossStackReadsForPartialSave(currentState, this.recordedImports, this.recordedOutputReads),
|
|
28393
28458
|
lastModified: Date.now()
|
|
28394
28459
|
};
|
|
@@ -28400,11 +28465,12 @@ var DeployEngine = class {
|
|
|
28400
28465
|
try {
|
|
28401
28466
|
const freshEtag = (await this.stateBackend.getState(stackName, this.stackRegion))?.etag;
|
|
28402
28467
|
const postRollbackState = {
|
|
28403
|
-
version:
|
|
28468
|
+
version: 9,
|
|
28404
28469
|
region: this.stackRegion,
|
|
28405
28470
|
stackName: currentState.stackName,
|
|
28406
28471
|
resources: newResources,
|
|
28407
28472
|
outputs: currentState.outputs,
|
|
28473
|
+
...exportNamesCarriedFrom(currentState),
|
|
28408
28474
|
...crossStackReadsForPartialSave(currentState, this.recordedImports, this.recordedOutputReads),
|
|
28409
28475
|
lastModified: Date.now()
|
|
28410
28476
|
};
|
|
@@ -28428,11 +28494,12 @@ var DeployEngine = class {
|
|
|
28428
28494
|
}
|
|
28429
28495
|
return {
|
|
28430
28496
|
state: {
|
|
28431
|
-
version:
|
|
28497
|
+
version: 9,
|
|
28432
28498
|
region: this.stackRegion,
|
|
28433
28499
|
stackName: currentState.stackName,
|
|
28434
28500
|
resources: newResources,
|
|
28435
28501
|
outputs,
|
|
28502
|
+
exportNames: [...this.resolvedExportNames],
|
|
28436
28503
|
...this.recordedImports.length > 0 && { imports: [...this.recordedImports] },
|
|
28437
28504
|
...this.recordedOutputReads.length > 0 && { outputReads: [...this.recordedOutputReads] },
|
|
28438
28505
|
lastModified: Date.now()
|
|
@@ -28465,11 +28532,12 @@ var DeployEngine = class {
|
|
|
28465
28532
|
*/
|
|
28466
28533
|
async persistStateAfterOutputFailure(stackName, currentState, newResources, currentEtag, pendingMigration) {
|
|
28467
28534
|
const buildState = () => ({
|
|
28468
|
-
version:
|
|
28535
|
+
version: 9,
|
|
28469
28536
|
region: this.stackRegion,
|
|
28470
28537
|
stackName: currentState.stackName,
|
|
28471
28538
|
resources: newResources,
|
|
28472
28539
|
outputs: currentState.outputs,
|
|
28540
|
+
...exportNamesCarriedFrom(currentState),
|
|
28473
28541
|
...crossStackReadsForPartialSave(currentState, this.recordedImports, this.recordedOutputReads),
|
|
28474
28542
|
lastModified: Date.now()
|
|
28475
28543
|
});
|
|
@@ -29471,6 +29539,7 @@ var DeployEngine = class {
|
|
|
29471
29539
|
* then (issue #1919).
|
|
29472
29540
|
*/
|
|
29473
29541
|
async resolveOutputs(template, resources, stackName, parameterValues, conditions) {
|
|
29542
|
+
this.resolvedExportNames = [];
|
|
29474
29543
|
if (!template.Outputs) return {};
|
|
29475
29544
|
const outputs = {};
|
|
29476
29545
|
const context = this.buildResolverContext({
|
|
@@ -29519,6 +29588,7 @@ var DeployEngine = class {
|
|
|
29519
29588
|
else if (isExportAliasCollision(exportName, outputKey, publishedOutputNames)) this.logger.warn(exportAliasCollisionWarning(outputKey, exportName));
|
|
29520
29589
|
else {
|
|
29521
29590
|
outputs[exportName] = value;
|
|
29591
|
+
if (!this.resolvedExportNames.includes(exportName)) this.resolvedExportNames.push(exportName);
|
|
29522
29592
|
this.outputsTemplateSource[exportName] = output.Value;
|
|
29523
29593
|
}
|
|
29524
29594
|
}
|
|
@@ -29545,5 +29615,5 @@ var DeployEngine = class {
|
|
|
29545
29615
|
};
|
|
29546
29616
|
|
|
29547
29617
|
//#endregion
|
|
29548
|
-
export { startInterruptWatch as $,
|
|
29549
|
-
//# sourceMappingURL=deploy-engine-
|
|
29618
|
+
export { startInterruptWatch as $, AwsClients as $n, shouldRetainResource as $t, renderStatefulReason as A, getLegacyStateBucketName as An, isThrottlingError as Ar, redactSecretsForState as At, exportAliasCollisionScrubWarning as B, CFN_TEMPLATE_BODY_LIMIT as Bn, DiffCalculator as Bt, isFinalSnapshotError as C, runDockerForeground as Cn, SynthesisError as Cr, TEMPLATE_SOURCED_RULES as Ct, extractDeploymentEventError as D, Synthesizer as Dn, withErrorHandling as Dr, isSingleDynamicReferenceToken as Dt, makeCanonicalizePropertiesFn as E, getDockerImageBySourceHash as En, normalizeAwsError as Er, errorCauseChain as Et, green as F, resolveStateBucketWithDefault as Fn, s3BucketDomainName as Ft, collectInlinePolicyNamesManagedBySiblings as G, expectedOwnerParam as Gn, TemplateParser as Gt, secretBearingStateKeyWarning as H, MIGRATE_TMP_PREFIX as Hn, describeTypeWithThrottleRetry as Ht, red as I, resolveStateBucketWithDefaultAndSource as In, s3BucketDualStackDomainName as It, findActionableSilentDrops as J, derivePartitionAndUrlSuffix as Jn, S3StateBackend as Jt, clearOnUpdateRemoval as K, PARTITION_TABLE as Kn, LockManager as Kt, yellow as L, resolveUseCdkBootstrapAssets as Ln, s3BucketRegionalDomainName as Lt, bold as M, resolveAutoAssetStorage as Mn, __exportAll as Mr, classifyReplaySecretRegion as Mt, cyan as N, resolveCaptureObservedState as Nn, producerRegionsFromState as Nt, MULTI_REGION_RECREATE_BLOCKED_TYPES as O, synthesisStatusMessage as On, isMarkedNonRetryable as Or, maskSecretsInError as Ot, gray as P, resolveSkipPrefix as Pn, s3BucketArn as Pt, isInterruptedWaitError as Q, resolveBucketRegion as Qn, importableOutputs as Qt, collectDeclaredOutputNames as R, stateBucketExistenceConfirmed as Rn, s3BucketWebsiteUrl as Rt, createPreDeleteFinalSnapshot as S, partitionSensitiveEnv as Sn, StateError as Sr, STATE_SOURCED_READBACK_RULES as St, unsupportedFinalSnapshotError as T, AssetManifestLoader as Tn, isCdkdError as Tr, dynamicReferenceTokens as Tt, stateKeySecretExposure as U, findLargeInlineResources as Un, withRetry as Ut, isExportAliasCollision as V, CFN_TEMPLATE_URL_LIMIT as Vn, INTRINSIC_KEYS as Vt, IAMRoleProvider as W, uploadCfnTemplate as Wn, DagBuilder as Wt, beginCommandInterruptScope as X, processStackMessages as Xn, exportNamesCarriedFrom as Xt, findSilentDropProperties as Y, AssemblyReader as Yn, rebuildClientForBucketRegion as Yt, endCommandInterruptScope as Z, clearBucketRegionCache as Zn, importableOutputKeys as Zt, computeImplicitDeleteEdges as _, buildDenyExternalAccessPolicy as _n, ProvisioningError as _r, replayWarn as _t, DeploymentEventsStore as a, loadPublishableAssetManifest as an, ConfigError as ar, carriesDynamicReference as at, buildFinalSnapshotIdentifier as b, formatDockerLoginError as bn, StackHasActiveImportsError as br, requireConfigString as bt, replayFailedOperations as c, stripControlChars as cn, DeployCancelledError as cr, refStateLookupFromResource as ct, updatePartialReason as d, ensureAssetStorage as dn, LocalMigrateError as dr, resolveExplicitPhysicalId as dt, AssetPublisher as en, getAwsClients as er, CloudControlProvider as et, UNSPECIFIED_SKIP_REASON as f, getBootstrapMarkerKey as fn, LocalStartServiceError as fr, assertRegionMatch as ft, IMPLICIT_DELETE_DEPENDENCIES as g, validateContainerRepoName as gn, PartialFailureError as gr, readConfigString as gt, maskingRetryLogger as h, validateAssetBucketName as hn, NestedStackChildDirectDestroyError as hr, configStringRefusal as ht, DeploymentEventsReader as i, createAssetRedirectResolver as in, CdkdError as ir, IntrinsicFunctionResolver as it, formatResourceLine as j, resolveApp as jn, markNonRetryable as jr, scrubResourceRecord as jt, isStatefulRecreateTargetSync as k, getDefaultStateBucketName as kn, isRetryableTransientError as kr, maskSecretsInText as kt, replayRollback as l, AssetModeResolver as ln, DynamicReferenceRegionAmbiguousError as lr, WAFv2WebACLProvider as lt, withResourceDeadline as m, readBootstrapMarkerBody as mn, MissingCdkCliError as mr, configBooleanRefusal as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, WorkGraph as nn, setAwsClients as nr, disableInstanceApiTermination as nt, planFailedOps as o, rewriteTemplateAssetReferences as on, CrossAccountSecretRefusalError as or, cfnRefValueFromPhysicalId as ot, deleteSkipReason as p, parseBootstrapMarker as pn, LockError as pr, coerceCfnBoolean as pt, ProviderRegistry as q, canonicalizeRegion as qn, displaySafe as qt, DeployEngine as r, buildAssetRedirectMap as rn, AssetError as rr, isTerminationProtectionPropagationError as rt, planRollback as s, escapeRegExp$1 as sn, DependencyError as sr, getAccountInfo as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, stringifyValue as tn, resetAwsClients as tr, slowCcOperationTimeoutMs as tt, updatePartialMessage as u, BOOTSTRAP_MARKER_PREFIX as un, LocalInvokeBuildError as ur, normalizeAwsTagsToCfn as ut, ATOMIC_FINAL_SNAPSHOT_TYPES as v, buildDockerImage as vn, ResourceTimeoutError as vr, requireConfigArray as vt, refusesFinalSnapshot as w, runDockerStreaming as wn, formatError as wr, createSecretMasker as wt, ccRoutedFinalSnapshotError as x, getDockerCmd as xn, StackTerminationProtectionError as xr, STATE_SOURCED_CROSS_GENERATION_RULES as xt, PRE_DELETE_SNAPSHOT_TYPES as y, dockerSpawnEnvWithSensitive as yn, ResourceUpdateNotSupportedError as yr, requireConfigObject as yt, collectPublishedOutputNames as z, warnDeprecatedNoPrefixCliFlag as zn, applyRoleArnIfSet as zt };
|
|
29619
|
+
//# sourceMappingURL=deploy-engine-DxboGDr4.js.map
|