본문 바로가기

AWS

쉘 프로그래밍 자동화

1. git ssh 설정

 

2. ec2 접속

  • bastion 우회접속
  • ec2 유동 사설 IP 가져오기 ( aws cli )
  • 위의 두개 결합후 하나의 .sh 파일에서 bastion 우회후 콘솔접속 없이 ip 주소 가져와서 접속
#!/bin/bash

# 변수로 받아온후
privateIpAddress=$(aws ec2 describe-instances --filter "Name=tag:Name,Values=인스턴스태그네임" --query "Reservations[*].Instances[*].[PrivateIpAddress]")

ssh -J myungsworld -i ~/.ssh/ec2.pem ec2-user@$privateIpAddress

 

위 스크립트를 아래와 같이 한번더 고도화 함

# vi ~/.ssh/config 

Host bastion-myungsworld
  HostName {IP주소}
  User ec2-user
  IdentitiesOnly yes
  IdentityFile ~/.ssh/myungsworld-bastion.pem
  
Host myPrivateEC2
  HostName {Ip주소}
  User ec2-use
  IdentitiesOnly yes
  IdentityFile ~/.ssh/myungsworld-ec2.pem
  ProxyJump bastion-myungsworld
  
  
# 이후에 아래 명령어로 접근
ssh myPrivateEC2