LoginSignup
1

More than 5 years have passed since last update.

ElasticBeanstalk の eb コマンド ver3 を試す

Posted at

インストール

$ sudo pip install awsebcli

$ eb --version
EB CLI 3.2.2 (Python 2.7.6)

アプリケーションの作成

$ cd /path/to/project/

$ eb init <アプリ名> --platform PHP

環境(Environment)の作成

$ eb create <環境名> \
    --cname     <CNAME> \
    --platform  PHP \
    --tier      webserver \
    --vpc.securitygroups <securitygroup> \
    --instance_profile   <IAMロール> \
    --keyname            <SSHキーの名前> \
    --instance_type      t2.micro \

ドキュメント

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1