AWS : The config profile (MyName) could not be found

后端 未结 10 511
醉话见心
醉话见心 2021-02-01 11:52

Every time I want to config something with AWS I get the following error :

\"The config profile (myname) could not be found\"

like : aws confi

10条回答
  •  北恋
    北恋 (楼主)
    2021-02-01 12:14

    can you check your config file under ~/.aws/config- you might have an invalid section called [myname], something like this (this is an example)

    [default]
    region=us-west-2
    output=json
    
    [myname]
    region=us-east-1
    output=text
    

    Just remove the [myname] section (including all content for this profile) and you will be fine to run aws cli again

提交回复
热议问题