This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ansible 설치 | |
| apt-get update && apt-get install ansible -y | |
| # aws pem을 ssh agent의 key로 등록 | |
| ssh-agent bash | |
| ssh-add {aws_ssh_key}.pem |
OlderNewer