aws eb cli 3 sets up application for wrong account

后端 未结 1 1043
半阙折子戏
半阙折子戏 2020-12-08 08:13

I have multiple AWS accounts and I\'m trying out the new command line interface for elastic beanstalk EB CLI 3. When I run the following command eb init I get

1条回答
  •  独厮守ぢ
    2020-12-08 08:21

    You can set up a new profile to use with the EB CLI. Profiles are shared between the AWS CLI and the EB CLI.

    Open up your aws config file: ~/.aws/config and add the following lines:

    [profile profilename]
    aws_access_key_id = aaaaaa
    aws_secret_access_key = aaaaaaaaa123
    

    Then you can call eb init --profile profilename. This will set up the EB CLI to use that specific profile for that specific directory.

    0 讨论(0)
提交回复
热议问题