概要
AWSを使うときによくハマるバグなどを自分用に書いて行く備忘録。
メモ
- auth error
An error occurred (UnrecognizedClientException) when calling the GetAuthorizationToken operation: The security token included in the request is invalid.
Error: Cannot perform an interactive login from a non TTY device
https://teratail.com/questions/220857 で解決
export AWS_ACCESS_KEY_ID=***
export AWS_SECRET_ACCESS_KEY=*****
export AWS_DEFAULT_REGION=ap-northeast-1
これが定義されていると、aws configure
したものより優先される。
- ecr ログイン
aws ecr get-login --no-include-email
を実行して、出てきたコマンドをそのまま実行。