0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWS CLI 「You can also configure your 〇〇 by running "aws configure".」エラー対処方法

Last updated at Posted at 2021-07-24

#エラー発生
AWS CLI上で下記のエラーが発生。

aws kms create-key
You must specify a region. You can also configure your region by running "aws configure".
(リージョンを指定しなければいけません。"aws configure"を実行することで、リージョンを設定することができます。)

上記エラー内容をググると、下記の記事発見。
AWSクライアントでリージョン(region)を指定する
リージョンを指定してみるが、下記のエラーが発生。。

aws kms create-key --region us-east-1
Unable to locate credentials. You can configure credentials by running "aws configure".
(認証情報が見つかりません。"aws configure"を実行することで、認証情報を設定することができます。)

#解決方法
aws configureの設定をすることで解決できます。

AWS-CLIの初期設定のメモの記事のaws-cliの設定を参考にしました。

$ aws configure --profile user1
AWS Access Key ID [None]: {アクセスキー(各自)}
AWS Secret Access Key [None]: {シークレットアクセスキー(各自)}
Default region name [None]: ap-northeast-1
Default output format [None]: json

AWS Access Key IDとAWS Secret Access KeyはIAMの該当ユーザー>認証情報>アクセスキーから確認可能です。

参照:https://github.com/aws/aws-cli/issues/915

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?