Ansible 사용해서 Ec2 플레이북 배포
aws_ec2 plugin을 통해서 받아온 인벤토리에 플레이북을 사용해 아파치 서버를 설치하고 구동시키는 것을 해보려 한다. 1. 디렉토리 구조 확인 2. ansible.cfg 파일 수정 [defaults] host_key_checking= False interpreter_python=auto_silent inventory = /ansible/inventory/aws_ec2.yaml private_key_file= /ansible/file/real.pem remote_user = centos [inventory] enable_plugins= aws_ec2,yaml 인스턴스에 원격접속을 해야하기 때문에 인스턴스를 생성할 때 지정해놨던 pem 파일의 경로를 지정해 놓는다. pem 파일을 0400으로 권한 변..