我已经有几年没有使用 AWS Amplify 了,上次使用它时,我将配置文件保存在 CSV 文件中,其中包含以下字段。
我正在一台新机器上再次设置 Amplify,我想知道是否应该将此配置添加到
config
文件中,如 此处所述。
换句话说,将 CSV 文件的内容保存到
~/.aws/config
。
或者有更“更新”的方法吗?
好的 - 因为这是一台新机器,所以我首先必须重新安装 amplify CLI。
npm install -g @aws-amplify/cli
然后再次添加放大凭证。
为了做到这一点,我首先创建一个新的 Angular 项目,从根项目目录文件夹运行
amplify init
。
它输出以下内容。
Project information
| Name: test
| Environment: dev
| Default editor: Visual Studio Code
| App type: javascript
| Javascript framework: angular
| Source Directory Path: src
| Distribution Directory Path: dist
| Build Command: npm run-script build
| Start Command: ng serve
? Initialize the project with the above configuration? Yes
然后对于身份验证方法,它会询问:
? Select the authentication method you want to use: (Use arrow keys)
❯ AWS profile
我选择了
AWS profile
。
然后它会询问我们是否要设置新用户。我说不。
? Setup new user (Y/n) n
然后要求提供凭据。
? Setup new user No
? accessKeyId: ********************
? secretAccessKey: ****************************************
? region: ***
现在使用保存的凭据恢复放大设置。