#エラー発生
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の該当ユーザー>認証情報>アクセスキーから確認可能です。