docs(claude-code): document pre_install_script for module dependency ordering

Update the pre_install_script variable description to clarify that it can be
used for handling dependencies between modules, such as waiting for git-clone
to complete before Claude Code initialization.
This commit is contained in:
Jason Barnett 2025-12-16 12:57:22 -07:00
parent 96c5f3219d
commit cdfbc6d126

View File

@ -67,7 +67,7 @@ variable "cli_app_display_name" {
variable "pre_install_script" {
type = string
description = "Custom script to run before installing Claude Code."
description = "Custom script to run before installing Claude Code. Can be used for dependency ordering between modules (e.g., waiting for git-clone to complete before Claude Code initialization)."
default = null
}