S3バケット作成時のエラー
S3バケット作成時のエラー:
東京リージョンでs3バケット作成を試みたら下記エラー。
awscliのhelpにもあるが
input
output
東京リージョンでs3バケット作成を試みたら下記エラー。
$ aws s3api create-bucket --bucket test-bucket --region ap-northeast-1 An error occurred (IllegalLocationConstraintException) when calling the CreateBucket operation: The a-northeast-1 location constraint is incompatible for the region specific endpoint this request was sent to.
--create-bucket-configuration LocationConstraint
の指定が必要。input
$ aws s3api create-bucket --bucket test-bucket --region ap-northeast-1 --create-bucket-configuration LocationConstraint=ap-northeast-1
{ "Location": "http://test-bucket.s3.amazonaws.com/" }
コメント
コメントを投稿