@go-to-k/cdkd 0.268.3 → 0.268.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-bxS6B6Ja.js → asg-provider-Beq_IUQH.js} +2 -2
- package/dist/{asg-provider-bxS6B6Ja.js.map → asg-provider-Beq_IUQH.js.map} +1 -1
- package/dist/cli.js +107 -15
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-DEi5-8x-.js → deploy-engine-IGjv53i5.js} +18 -9
- package/dist/deploy-engine-IGjv53i5.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-DEi5-8x-.js.map +0 -1
|
@@ -2856,7 +2856,9 @@ async function expandMacrosAttempt(template, opts, logger) {
|
|
|
2856
2856
|
try {
|
|
2857
2857
|
await waitUntilChangeSetCreateComplete({
|
|
2858
2858
|
client: cfn,
|
|
2859
|
-
maxWaitTime: waiterMaxWaitSeconds
|
|
2859
|
+
maxWaitTime: waiterMaxWaitSeconds,
|
|
2860
|
+
minDelay: 2,
|
|
2861
|
+
maxDelay: 5
|
|
2860
2862
|
}, {
|
|
2861
2863
|
StackName: transientStackName,
|
|
2862
2864
|
ChangeSetName: changeSetName
|
|
@@ -7646,7 +7648,8 @@ var ReplacementRulesRegistry = class {
|
|
|
7646
7648
|
"AvailabilityZone",
|
|
7647
7649
|
"ImageId",
|
|
7648
7650
|
"SubnetId",
|
|
7649
|
-
"KeyName"
|
|
7651
|
+
"KeyName",
|
|
7652
|
+
"NetworkInterfaces"
|
|
7650
7653
|
]) });
|
|
7651
7654
|
this.rules.set("AWS::ECS::TaskDefinition", { replacementProperties: /* @__PURE__ */ new Set([
|
|
7652
7655
|
"Family",
|
|
@@ -11941,7 +11944,7 @@ var CloudControlProvider = class {
|
|
|
11941
11944
|
this.logger.debug(`Deleting resource ${logicalId} (${resourceType}), physical ID: ${physicalId}`);
|
|
11942
11945
|
if (context?.removeProtection === true && resourceType === "AWS::AutoScaling::AutoScalingGroup") {
|
|
11943
11946
|
this.logger.debug(`Delegating protected AutoScalingGroup ${logicalId} delete to the SDK ASGProvider (Cloud Control cannot force-delete a protected ASG)`);
|
|
11944
|
-
const { ASGProvider } = await import("./asg-provider-
|
|
11947
|
+
const { ASGProvider } = await import("./asg-provider-Beq_IUQH.js").then((n) => n.n);
|
|
11945
11948
|
await new ASGProvider().delete(logicalId, physicalId, resourceType, _properties, context);
|
|
11946
11949
|
return;
|
|
11947
11950
|
}
|
|
@@ -12984,7 +12987,9 @@ var CustomResourceProvider = class CustomResourceProvider {
|
|
|
12984
12987
|
}));
|
|
12985
12988
|
await waitUntilFunctionUpdatedV2({
|
|
12986
12989
|
client: this.lambdaClient,
|
|
12987
|
-
maxWaitTime: 120
|
|
12990
|
+
maxWaitTime: 120,
|
|
12991
|
+
minDelay: 1,
|
|
12992
|
+
maxDelay: 5
|
|
12988
12993
|
}, { FunctionName: serviceToken });
|
|
12989
12994
|
} catch (error) {
|
|
12990
12995
|
this.logger.debug(`Could not recycle backing function for ${logicalId} (${error instanceof Error ? error.message : String(error)}); retrying invoke without a forced cold start`);
|
|
@@ -13037,11 +13042,15 @@ var CustomResourceProvider = class CustomResourceProvider {
|
|
|
13037
13042
|
try {
|
|
13038
13043
|
await waitUntilFunctionActiveV2({
|
|
13039
13044
|
client: this.lambdaClient,
|
|
13040
|
-
maxWaitTime: 600
|
|
13045
|
+
maxWaitTime: 600,
|
|
13046
|
+
minDelay: 1,
|
|
13047
|
+
maxDelay: 5
|
|
13041
13048
|
}, { FunctionName: serviceToken });
|
|
13042
13049
|
await waitUntilFunctionUpdatedV2({
|
|
13043
13050
|
client: this.lambdaClient,
|
|
13044
|
-
maxWaitTime: 600
|
|
13051
|
+
maxWaitTime: 600,
|
|
13052
|
+
minDelay: 1,
|
|
13053
|
+
maxDelay: 5
|
|
13045
13054
|
}, { FunctionName: serviceToken });
|
|
13046
13055
|
} catch (error) {
|
|
13047
13056
|
throw new Error(`Lambda backing custom resource ${logicalId} (${serviceToken}) did not reach a ready state for Invoke: ${error instanceof Error ? error.message : String(error)}`);
|
|
@@ -13959,6 +13968,7 @@ const PROPERTY_COVERAGE_BY_TYPE = /* @__PURE__ */ new Map([
|
|
|
13959
13968
|
"KeyName",
|
|
13960
13969
|
"MetadataOptions",
|
|
13961
13970
|
"Monitoring",
|
|
13971
|
+
"NetworkInterfaces",
|
|
13962
13972
|
"SecurityGroupIds",
|
|
13963
13973
|
"SecurityGroups",
|
|
13964
13974
|
"SubnetId",
|
|
@@ -13981,7 +13991,6 @@ const PROPERTY_COVERAGE_BY_TYPE = /* @__PURE__ */ new Map([
|
|
|
13981
13991
|
["KernelId", "not yet implemented by cdkd"],
|
|
13982
13992
|
["LaunchTemplate", "not yet implemented by cdkd"],
|
|
13983
13993
|
["LicenseSpecifications", "not yet implemented by cdkd"],
|
|
13984
|
-
["NetworkInterfaces", "not yet implemented by cdkd"],
|
|
13985
13994
|
["PlacementGroupName", "not yet implemented by cdkd"],
|
|
13986
13995
|
["PrivateDnsNameOptions", "not yet implemented by cdkd"],
|
|
13987
13996
|
["PrivateIpAddress", "not yet implemented by cdkd"],
|
|
@@ -17653,7 +17662,7 @@ const FLUSH_INTERVAL_MS = 2e3;
|
|
|
17653
17662
|
const FLUSH_EVENT_THRESHOLD = 50;
|
|
17654
17663
|
/** Build-time cdkd version, with a dev fallback for non-built contexts. */
|
|
17655
17664
|
function getCdkdVersion() {
|
|
17656
|
-
return "0.268.
|
|
17665
|
+
return "0.268.5";
|
|
17657
17666
|
}
|
|
17658
17667
|
/**
|
|
17659
17668
|
* Generate a time-sortable unique run id, e.g.
|
|
@@ -19699,4 +19708,4 @@ var DeployEngine = class {
|
|
|
19699
19708
|
|
|
19700
19709
|
//#endregion
|
|
19701
19710
|
export { WorkGraph as $, LockError as $t, slowCcOperationTimeoutMs as A, warnDeprecatedNoPrefixCliFlag as At, applyRoleArnIfSet as B, resolveBucketRegion as Bt, yellow as C, resolveAutoAssetStorage as Ct, ProviderRegistry as D, resolveStateBucketWithDefaultAndSource as Dt, clearOnUpdateRemoval as E, resolveStateBucketWithDefault as Et, refStateLookupFromResource as F, uploadCfnTemplate as Ft, DagBuilder as G, AssetError as Gt, describeTypeWithThrottleRetry as H, getAwsClients as Ht, WAFv2WebACLProvider as I, expectedOwnerParam as It, S3StateBackend as J, DependencyError as Jt, TemplateParser as K, CdkdError as Kt, normalizeAwsTagsToCfn as L, AssemblyReader as Lt, isTerminationProtectionPropagationError as M, CFN_TEMPLATE_URL_LIMIT as Mt, IntrinsicFunctionResolver as N, MIGRATE_TMP_PREFIX as Nt, findActionableSilentDrops as O, resolveUseCdkBootstrapAssets as Ot, cfnRefValueFromPhysicalId as P, findLargeInlineResources as Pt, stringifyValue as Q, LocalStartServiceError as Qt, resolveExplicitPhysicalId as R, processStackMessages as Rt, red as S, resolveApp as St, collectInlinePolicyNamesManagedBySiblings as T, resolveSkipPrefix as Tt, withRetry as U, resetAwsClients as Ut, DiffCalculator as V, AwsClients as Vt, isRetryableTransientError as W, setAwsClients as Wt, shouldRetainResource as X, LocalInvokeBuildError as Xt, rebuildClientForBucketRegion as Y, DeployCancelledError as Yt, AssetPublisher as Z, LocalMigrateError as Zt, formatResourceLine as _, getDockerImageBySourceHash as _t, DeploymentEventsStore as a, ResourceUpdateNotSupportedError as an, BOOTSTRAP_MARKER_PREFIX as at, gray as b, getDefaultStateBucketName as bt, replayFailedOperations as c, StateError as cn, parseBootstrapMarker as ct, IMPLICIT_DELETE_DEPENDENCIES as d, isCdkdError as dn, buildDockerImage as dt, MissingCdkCliError as en, buildAssetRedirectMap as et, computeImplicitDeleteEdges as f, normalizeAwsError as fn, formatDockerLoginError as ft, renderStatefulReason as g, AssetManifestLoader as gt, isStatefulRecreateTargetSync as h, runDockerStreaming as ht, DeploymentEventsReader as i, ResourceTimeoutError as in, AssetModeResolver as it, disableInstanceApiTermination as j, CFN_TEMPLATE_BODY_LIMIT as jt, CloudControlProvider as k, stateBucketExistenceConfirmed as kt, replayRollback as l, SynthesisError as ln, validateAssetBucketName as lt, MULTI_REGION_RECREATE_BLOCKED_TYPES as m, __exportAll as mn, runDockerForeground as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, PartialFailureError as nn, loadPublishableAssetManifest as nt, planFailedOps as o, StackHasActiveImportsError as on, ensureAssetStorage as ot, extractDeploymentEventError as p, withErrorHandling as pn, getDockerCmd as pt, LockManager as q, ConfigError as qt, DeployEngine as r, ProvisioningError as rn, rewriteTemplateAssetReferences as rt, planRollback as s, StackTerminationProtectionError as sn, getBootstrapMarkerKey as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, NestedStackChildDirectDestroyError as tn, createAssetRedirectResolver as tt, withResourceDeadline as u, formatError as un, validateContainerRepoName as ut, bold as v, Synthesizer as vt, IAMRoleProvider as w, resolveCaptureObservedState as wt, green as x, getLegacyStateBucketName as xt, cyan as y, synthesisStatusMessage as yt, assertRegionMatch as z, clearBucketRegionCache as zt };
|
|
19702
|
-
//# sourceMappingURL=deploy-engine-
|
|
19711
|
+
//# sourceMappingURL=deploy-engine-IGjv53i5.js.map
|