- boto
- boto3
- ansible
$ pip isntall boto boto3 ansible
$ vi ec2-provisioning/host_vars/localhost.yml
---
my_vars:
# AWSに登録したキーペア名を入力
ec2:
key_name: xxxxxx
---
$ vi ec2-provisioning/ansible.cfg
---
.
.
.
private_key_file=~/.ssh/xxxxxx.pem ← ここに秘密鍵を指定
.
---