From a3df14dcd1baf8c491145f80c9da3048a67a079d Mon Sep 17 00:00:00 2001 From: kaswhy Date: Thu, 14 Nov 2024 01:46:57 +0900 Subject: [PATCH] =?UTF-8?q?fix(initialize):=20=EA=B9=83=ED=97=88=EB=B8=8C?= =?UTF-8?q?=20=EA=B0=9C=EC=9D=B8=20=EC=A0=95=EB=B3=B4=20=EC=95=94=ED=98=B8?= =?UTF-8?q?=ED=99=94=20=ED=95=98=EB=8A=94=20=EB=B6=80=EB=B6=84=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 변경 후 - 해당 사항 반영 --- scripts/initialize.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/initialize.sh b/scripts/initialize.sh index 92e843a..8735a34 100644 --- a/scripts/initialize.sh +++ b/scripts/initialize.sh @@ -1,6 +1,6 @@ # Parameter Store에서 GitHub 자격 증명을 가져오기 -GH_USERNAME=$(aws ssm get-parameter --name "/github/username" --with-decryption --query "Parameter.Value" --output text) -GH_PAT=$(aws ssm get-parameter --name "/github/token" --with-decryption --query "Parameter.Value" --output text) +GH_USERNAME=$(aws ssm get-parameter --name "/github/username" --query "Parameter.Value" --output text) +GH_PAT=$(aws ssm get-parameter --name "/github/token" --query "Parameter.Value" --output text) # GitHub 자격 증명 파일 설정 echo "https://${GH_USERNAME}:${GH_PAT}@github.com" > ~/.git-credentials