@@ -17,16 +17,35 @@ cscli appsec-configs remove [item]... [flags]
1717### Examples
1818
1919```
20- cscli appsec-configs remove crowdsecurity/vpatch
20+ # Uninstall some appsec-configs.
21+ cscli appsec-configs remove crowdsecurity/virtual-patching
22+
23+ # Show the execution plan without changing anything - compact output sorted by type and name.
24+ cscli appsec-configs remove crowdsecurity/virtual-patching --dry-run
25+
26+ # Show the execution plan without changing anything - verbose output sorted by execution order.
27+ cscli appsec-configs remove crowdsecurity/virtual-patching --dry-run -o raw
28+
29+ # Uninstall and also remove the downloaded files.
30+ cscli appsec-configs remove crowdsecurity/virtual-patching --purge
31+
32+ # Remove tainted items.
33+ cscli appsec-configs remove crowdsecurity/virtual-patching --force
34+
35+ # Prompt for confirmation if running in an interactive terminal; otherwise, the option is ignored.
36+ cscli appsec-configs remove crowdsecurity/virtual-patching -i
37+ cscli appsec-configs remove crowdsecurity/virtual-patching --interactive
2138```
2239
2340### Options
2441
2542```
26- --all Remove all the appsec-configs
27- --force Force remove: remove tainted and outdated files
28- -h, --help help for remove
29- --purge Delete source file too
43+ --all Remove all the appsec-configs
44+ --dry-run Don't install or remove anything; print the execution plan
45+ --force Force remove: remove tainted and outdated files
46+ -h, --help help for remove
47+ -i, --interactive Ask for confirmation before proceeding
48+ --purge Delete source file too
3049```
3150
3251### Options inherited from parent commands
0 commit comments