@go-to-k/cdkd 0.156.0 → 0.157.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/{aws-clients-BF03Alpe.js → aws-clients-B15NAPbL.js} +24 -1
- package/dist/aws-clients-B15NAPbL.js.map +1 -0
- package/dist/cli.js +372 -26
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-YQwoPaCE.js → deploy-engine-UmoqjtWH.js} +19 -6
- package/dist/deploy-engine-UmoqjtWH.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/package.json +2 -1
- package/dist/aws-clients-BF03Alpe.js.map +0 -1
- package/dist/deploy-engine-YQwoPaCE.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as runDockerStreaming, c as getLogger, d as getLiveRenderer, g as generateResourceNameWithFallback, m as applyDefaultNameForFallback, n as formatDockerLoginError, o as spawnStreaming, r as getDockerCmd, v as withStackName } from "./docker-cmd-iDMcWcre.js";
|
|
2
|
-
import { r as getAwsClients } from "./aws-clients-
|
|
2
|
+
import { r as getAwsClients } from "./aws-clients-B15NAPbL.js";
|
|
3
3
|
import { randomUUID } from "node:crypto";
|
|
4
4
|
import { DeleteObjectCommand, GetBucketLocationCommand, GetObjectCommand, HeadBucketCommand, HeadObjectCommand, ListObjectsV2Command, NoSuchKey, PutObjectCommand, S3Client, S3ServiceException } from "@aws-sdk/client-s3";
|
|
5
5
|
import { CloudControlClient, CreateResourceCommand, DeleteResourceCommand, GetResourceCommand, GetResourceRequestStatusCommand, ListResourcesCommand, UpdateResourceCommand } from "@aws-sdk/client-cloudcontrol";
|
|
@@ -2431,7 +2431,7 @@ async function resolveStateBucketWithDefaultAndSource(cliBucket, region) {
|
|
|
2431
2431
|
logger.debug("No state bucket specified, resolving default from account...");
|
|
2432
2432
|
const { GetCallerIdentityCommand } = await import("@aws-sdk/client-sts");
|
|
2433
2433
|
const { S3Client } = await import("@aws-sdk/client-s3");
|
|
2434
|
-
const { getAwsClients } = await import("./aws-clients-
|
|
2434
|
+
const { getAwsClients } = await import("./aws-clients-B15NAPbL.js").then((n) => n.n);
|
|
2435
2435
|
const accountId = (await getAwsClients().sts.send(new GetCallerIdentityCommand({}))).Account;
|
|
2436
2436
|
const newName = getDefaultStateBucketName(accountId);
|
|
2437
2437
|
const legacyName = getLegacyStateBucketName(accountId, region);
|
|
@@ -6780,7 +6780,6 @@ const NON_PROVISIONABLE_TYPES = new Set([
|
|
|
6780
6780
|
"AWS::AutoScalingPlans::ScalingPlan",
|
|
6781
6781
|
"AWS::BedrockAgentCore::Browser",
|
|
6782
6782
|
"AWS::Budgets::Budget",
|
|
6783
|
-
"AWS::CertificateManager::Certificate",
|
|
6784
6783
|
"AWS::Cloud9::EnvironmentEC2",
|
|
6785
6784
|
"AWS::CloudFormation::CustomResource",
|
|
6786
6785
|
"AWS::CloudFormation::Macro",
|
|
@@ -6865,6 +6864,7 @@ const NON_PROVISIONABLE_TYPES = new Set([
|
|
|
6865
6864
|
"AWS::LakeFormation::DataLakeSettings",
|
|
6866
6865
|
"AWS::LakeFormation::Permissions",
|
|
6867
6866
|
"AWS::LakeFormation::Resource",
|
|
6867
|
+
"AWS::LicenseManager::License",
|
|
6868
6868
|
"AWS::ManagedBlockchain::Member",
|
|
6869
6869
|
"AWS::ManagedBlockchain::Node",
|
|
6870
6870
|
"AWS::MediaConvert::JobTemplate",
|
|
@@ -7340,8 +7340,7 @@ var CloudControlProvider = class {
|
|
|
7340
7340
|
"AWS::CDK::Metadata",
|
|
7341
7341
|
"Custom::CDKBucketDeployment",
|
|
7342
7342
|
"Custom::S3AutoDeleteObjects",
|
|
7343
|
-
"AWS::Route53::HostedZone"
|
|
7344
|
-
"AWS::CertificateManager::Certificate"
|
|
7343
|
+
"AWS::Route53::HostedZone"
|
|
7345
7344
|
]).has(resourceType)) return false;
|
|
7346
7345
|
if (resourceType.startsWith("Custom::") || resourceType.startsWith("AWS::CloudFormation::CustomResource")) return false;
|
|
7347
7346
|
if (isNonProvisionable(resourceType)) return false;
|
|
@@ -8277,6 +8276,20 @@ const PROPERTY_COVERAGE_BY_TYPE = new Map([
|
|
|
8277
8276
|
["Tags", "not yet implemented by cdkd"]
|
|
8278
8277
|
])
|
|
8279
8278
|
}],
|
|
8279
|
+
["AWS::CertificateManager::Certificate", {
|
|
8280
|
+
handled: new Set([
|
|
8281
|
+
"CertificateAuthorityArn",
|
|
8282
|
+
"CertificateExport",
|
|
8283
|
+
"CertificateTransparencyLoggingPreference",
|
|
8284
|
+
"DomainName",
|
|
8285
|
+
"DomainValidationOptions",
|
|
8286
|
+
"KeyAlgorithm",
|
|
8287
|
+
"SubjectAlternativeNames",
|
|
8288
|
+
"Tags",
|
|
8289
|
+
"ValidationMethod"
|
|
8290
|
+
]),
|
|
8291
|
+
silentDrop: /* @__PURE__ */ new Map()
|
|
8292
|
+
}],
|
|
8280
8293
|
["AWS::CloudFormation::Stack", {
|
|
8281
8294
|
handled: new Set(["Parameters", "TemplateURL"]),
|
|
8282
8295
|
silentDrop: new Map([
|
|
@@ -12356,4 +12369,4 @@ var DeployEngine = class {
|
|
|
12356
12369
|
|
|
12357
12370
|
//#endregion
|
|
12358
12371
|
export { CdkdError as $, shouldRetainResource as A, resolveSkipPrefix as B, IntrinsicFunctionResolver as C, TemplateParser as D, DagBuilder as E, Synthesizer as F, CFN_TEMPLATE_URL_LIMIT as G, resolveStateBucketWithDefaultAndSource as H, getDefaultStateBucketName as I, uploadCfnTemplate as J, MIGRATE_TMP_PREFIX as K, getLegacyStateBucketName as L, stringifyValue as M, WorkGraph as N, LockManager as O, buildDockerImage as P, AssetError as Q, resolveApp as R, assertRegionMatch as S, DiffCalculator as T, warnDeprecatedNoPrefixCliFlag as U, resolveStateBucketWithDefault as V, CFN_TEMPLATE_BODY_LIMIT as W, clearBucketRegionCache as X, AssemblyReader as Y, resolveBucketRegion as Z, matchesCdkPath as _, formatError as _t, withRetry as a, LockError as at, ProviderRegistry as b, withErrorHandling as bt, bold as c, PartialFailureError as ct, green as d, ResourceUpdateNotSupportedError as dt, ConfigError as et, red as f, RouteDiscoveryError as ft, CDK_PATH_TAG as g, SynthesisError as gt, collectInlinePolicyNamesManagedBySiblings as h, StateError as ht, withResourceDeadline as i, LocalStartServiceError as it, AssetPublisher as j, S3StateBackend as k, cyan as l, ProvisioningError as lt, IAMRoleProvider as m, StackTerminationProtectionError as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, LocalInvokeBuildError as nt, IMPLICIT_DELETE_DEPENDENCIES as o, MissingCdkCliError as ot, yellow as p, StackHasActiveImportsError as pt, findLargeInlineResources as q, DeployEngine as r, LocalMigrateError as rt, formatResourceLine as s, NestedStackChildDirectDestroyError as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, DependencyError as tt, gray as u, ResourceTimeoutError as ut, normalizeAwsTagsToCfn as v, isCdkdError as vt, applyRoleArnIfSet as w, CloudControlProvider as x, resolveExplicitPhysicalId as y, normalizeAwsError as yt, resolveCaptureObservedState as z };
|
|
12359
|
-
//# sourceMappingURL=deploy-engine-
|
|
12372
|
+
//# sourceMappingURL=deploy-engine-UmoqjtWH.js.map
|