@go-to-k/cdkd 0.37.0 → 0.39.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 +7 -1
- package/dist/cli.js +1361 -36
- package/dist/cli.js.map +3 -3
- package/dist/go-to-k-cdkd-0.39.0.tgz +0 -0
- package/package.json +1 -1
- package/dist/go-to-k-cdkd-0.37.0.tgz +0 -0
package/README.md
CHANGED
|
@@ -290,10 +290,16 @@ cdkd deploy MyStack \
|
|
|
290
290
|
cdkd diff MyStack
|
|
291
291
|
|
|
292
292
|
# Detect drift between cdkd state and AWS reality (state-only; no synth)
|
|
293
|
-
# Exits 0 with no drift, 1 when drift is detected, 2 on
|
|
293
|
+
# Exits 0 with no drift, 1 when drift is detected, 2 on partial revert failure.
|
|
294
294
|
cdkd drift MyStack
|
|
295
295
|
cdkd drift --all --json
|
|
296
296
|
|
|
297
|
+
# Resolve drift: state ← AWS (catch up state with manual console changes)
|
|
298
|
+
cdkd drift MyStack --accept --yes
|
|
299
|
+
|
|
300
|
+
# Resolve drift: AWS ← state (push state values back into AWS via provider.update)
|
|
301
|
+
cdkd drift MyStack --revert --yes
|
|
302
|
+
|
|
297
303
|
# Dry run (plan only, no changes)
|
|
298
304
|
cdkd deploy --dry-run
|
|
299
305
|
|