@go-to-k/cdkd 0.12.0 → 0.14.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/README.md +8 -1
- package/dist/cli.js +475 -34
- package/dist/cli.js.map +4 -4
- package/dist/go-to-k-cdkd-0.14.0.tgz +0 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/go-to-k-cdkd-0.12.0.tgz +0 -0
package/README.md
CHANGED
|
@@ -428,6 +428,13 @@ cdkd destroy --all --force
|
|
|
428
428
|
# Force-unlock a stale lock from interrupted deploy
|
|
429
429
|
cdkd force-unlock MyStack
|
|
430
430
|
|
|
431
|
+
# Inspect state-bucket info on demand (bucket name, region, source, schema version, stack count).
|
|
432
|
+
# Routine commands (deploy / destroy / etc.) no longer print the bucket banner by default —
|
|
433
|
+
# pass --verbose to surface it in their debug logs, or use this subcommand for an explicit answer.
|
|
434
|
+
cdkd state info
|
|
435
|
+
cdkd state info --json # JSON output for tooling
|
|
436
|
+
cdkd state info --state-bucket my-bucket # explicit bucket; reports Source: --state-bucket flag
|
|
437
|
+
|
|
431
438
|
# List stacks registered in the cdkd state bucket
|
|
432
439
|
cdkd state list
|
|
433
440
|
cdkd state ls --long # include resource count, last-modified, lock status
|
|
@@ -621,7 +628,7 @@ After deployment, outputs are resolved and saved to the S3 state file:
|
|
|
621
628
|
**Key differences from CloudFormation**:
|
|
622
629
|
|
|
623
630
|
- CloudFormation: Outputs accessible via `aws cloudformation describe-stacks`
|
|
624
|
-
- cdkd: Outputs saved in S3 state file (e.g., `s3://bucket/cdkd/MyStack/state.json`)
|
|
631
|
+
- cdkd: Outputs saved in S3 state file (e.g., `s3://bucket/cdkd/MyStack/us-east-1/state.json`)
|
|
625
632
|
- Both resolve intrinsic functions (Ref, Fn::GetAtt, etc.) to actual values
|
|
626
633
|
|
|
627
634
|
## Testing
|