8
5

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 5 years have passed since last update.

S3バケット作成時のエラー

Posted at

東京リージョンで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.

awscliのhelpにもあるが--create-bucket-configuration LocationConstraintの指定が必要。

input

$ aws s3api create-bucket --bucket test-bucket --region ap-northeast-1 --create-bucket-configuration LocationConstraint=ap-northeast-1

output

{
    "Location": "http://test-bucket.s3.amazonaws.com/"
}
8
5
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
8
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?