AWS Security ChangesHomeSearch

AWS m2 documentation change

Service: m2 · 2025-11-22 · Documentation low

File: m2/latest/userguide/ba-runtime-deploy-container.md

Summary

Updated file extensions from .tar.gz to .zip and replaced tar commands with unzip in deployment scripts

Security assessment

This change aligns with the artifact format update but does not introduce or modify security-related content. Security implications depend on the signature verification added in ba-runtime-artifacts.md, not this deployment step.

Diff

diff --git a/m2/latest/userguide/ba-runtime-deploy-container.md b/m2/latest/userguide/ba-runtime-deploy-container.md
index c965bf9be..0a4eead54 100644
--- a//m2/latest/userguide/ba-runtime-deploy-container.md
+++ b//m2/latest/userguide/ba-runtime-deploy-container.md
@@ -84 +84 @@ The contents of install-gapwalk.sh and install-app.sh scripts, which are used in
-    COPY aws-bluage-runtime-4.x.x.tar.gz /usr/local/velocity/installation/gapwalk/gapwalk.tar.gz
+    COPY aws-bluage-runtime-4.x.x.zip /usr/local/velocity/installation/gapwalk/gapwalk.zip
@@ -108 +108 @@ The following are the contents of `install-gapwalk.sh.`
-    sudo cp /usr/local/velocity/installation/gapwalk/gapwalk.tar.gz ${TEMP_DIR}
+    sudo cp /usr/local/velocity/installation/gapwalk/gapwalk.zip ${TEMP_DIR}
@@ -119 +119 @@ The following are the contents of `install-gapwalk.sh.`
-    tar -xvf ${TEMP_DIR}/gapwalk.tar.gz -C /bluage/tomcat.gapwalk
+    unzip ${TEMP_DIR}/gapwalk.zip -d /bluage/tomcat.gapwalk