1+(91) 458 654 528 [email protected]
Wasabi Cloud Storage

Create Bucket

Estimated reading: 3 minutes

Create Bucket

After completing all these processes you can Create a Bucket. Select a preferred bucket name, select region. Then go for the next steps. 

Public Access

Any Internet user can access a bucket thanks to public access. The ability to read items from the bucket is included in this. Make sure a bucket you make public doesn’t contain any private information.

Defining a Bucket Policy for Public Access

As a precaution, a bucket intended for public access must have an associated policy.

Before defining a policy, you may want to review the Policies feature and Bucket Policy information.

The following is a sample policy that allows for public access of a bucket. Change the bucket name in the Resource section (arn:aws:s3:::YOURBUCKET, shown in the example below) to reflect your resource name.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowPublicRead",
      "Effect": "Allow",
      "Principal": {
        "AWS": "*"
      },
      "Action": [
        "s3:GetObject",
        "s3:GetObjectVersion"
      ],
      "Resource": "arn:aws:s3:::bucket-name/*"
    }
  ]
}
Note that the follow are the general formats for ARNs:
arn:aws:service:account-id:resource-id
arn:aws:service:account-id:resource-type/resource-id
arn:aws:service:account-id:resource-type:resource-id

After defining the policy for a bucket, you can access files directly via either of these URLs:

  • YOURBUCKETNAME.s3.wasabisys.com/FILENAME
  • s3.wasabisys.com/YOURBUCKET/FILENAME

Enabling/Disabling Public Access

  1. To indicate that the bucket should have public access, click  for the bucket and click Settings.
  2. On the PROPERTIES panel, open the Public Access Override drop-down.
  3. Slide to enable the Turn on override option. This overrides policies related to permissions on the bucket and can give anyone on the Internet read access to it. Turn off the override if you want to return the bucket public access status to its default state.
  4. Once the override is on, you can enable or disable public access to the bucket.If you select the option to Enable Public Access, a message will remind you that public access to your bucket is available and anyone on the Internet will have access to read objects from the bucket.

Click OK to continue. (You can select the Disable Public Access option to reverse this action).

When public access is enabled, Enabled is shown for the bucket in the Public Access column on the Object Storage panel. Default is the status before the public access is changed. If you enable and then disable public access, the status changes to Disabled.

To follow the process of Public Access visit here.

Leave a Reply