AWS transform documentation change
Summary
Added documentation for ATX_GIT_COMMITTER_NAME and ATX_GIT_COMMITTER_EMAIL environment variables to configure checkpoint commit authorship.
Security assessment
Configuring commit author identity improves auditability but doesn't address vulnerabilities or security features. No security implications or threat mitigation mentioned.
Diff
diff --git a/transform/latest/userguide/custom-workflows.md b/transform/latest/userguide/custom-workflows.md index a7cbc3924..3a81ac25e 100644 --- a//transform/latest/userguide/custom-workflows.md +++ b//transform/latest/userguide/custom-workflows.md @@ -277,0 +278,8 @@ Disable automatic version checks and update notifications during command executi +**ATX_GIT_COMMITTER_NAME and ATX_GIT_COMMITTER_EMAIL** + +Configure the author identity used for the checkpoint commits that AWS Transform custom creates in your repository as it applies changes during a transformation. When these variables are not set, checkpoint commits are attributed to a default identity (`ATX Bot <[email protected]>`). Set both variables to attribute checkpoints to a specific author. + + + export ATX_GIT_COMMITTER_NAME="Jane Developer" + export ATX_GIT_COMMITTER_EMAIL="[email protected]" +