@go-to-k/cdkd 0.111.2 → 0.112.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/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -8212,7 +8212,7 @@ var DynamoDBGlobalTableProvider = class {
|
|
|
8212
8212
|
const flatUpdate = { TableName: physicalId };
|
|
8213
8213
|
let flatChanged = false;
|
|
8214
8214
|
if (newDpe !== oldDpe || newDpe !== void 0 && typeof awsDpe === "boolean" && Boolean(newDpe) !== awsDpe) {
|
|
8215
|
-
if ((oldDpe === true || awsDpe === true) && Boolean(newDpe ?? false) === false && !(newDpe !== void 0)) this.logger.warn(`Auto-disabling DeletionProtectionEnabled on ${physicalId}: the
|
|
8215
|
+
if ((oldDpe === true || awsDpe === true) && Boolean(newDpe ?? false) === false && !(newDpe !== void 0)) this.logger.warn(`Auto-disabling DeletionProtectionEnabled on ${physicalId}: the CDK code does not set 'deletionProtection: true' but AWS has it enabled. AWS will accept DeleteTable on this resource after this deploy. If you meant to keep protection on, set 'deletionProtection: true' in your CDK code; if you meant to disable it explicitly, set 'deletionProtection: false' to silence this warning.`);
|
|
8216
8216
|
flatUpdate.DeletionProtectionEnabled = Boolean(newDpe ?? false);
|
|
8217
8217
|
flatChanged = true;
|
|
8218
8218
|
}
|
|
@@ -45300,7 +45300,7 @@ function reorderArgs(argv) {
|
|
|
45300
45300
|
*/
|
|
45301
45301
|
async function main() {
|
|
45302
45302
|
const program = new Command();
|
|
45303
|
-
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.
|
|
45303
|
+
program.name("cdkd").description("CDK Direct - Deploy AWS CDK apps directly via SDK/Cloud Control API").version("0.112.0");
|
|
45304
45304
|
program.addCommand(createBootstrapCommand());
|
|
45305
45305
|
program.addCommand(createSynthCommand());
|
|
45306
45306
|
program.addCommand(createListCommand());
|