Skip to content

Commit

Permalink
fix(initialize): 깃허브 개인 정보 암호화 하는 부분 삭제
Browse files Browse the repository at this point in the history
변경 후
- 해당 사항 반영
  • Loading branch information
kaswhy committed Nov 13, 2024
1 parent 19aad2e commit a3df14d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/initialize.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a3df14d

Please sign in to comment.