Hi,
I have a high performance storage object where I have files. I would like to open it to public and access it by URL.
First I tried with acl rules, but the new files don't take the inheritance of their parent folders.
Then, reading the amazon S3 documentation, I wanted to configure the policies of the bucket which could solve my problem.
So I used this command to integrate a policy into the bucket:
`aws s3api put-bucket-policy --bucket myBucket --policy '/policy.json' --endpoint "https://my.endpoint/"`
This is my policy.json :
{
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::myBucket/*"
}
]
}
But i have this error:
An error occurred (NotImplemented) when calling the PutBucketPolicy operation: The requested resource is not implemented
Is it possible to open a high performance storage object to the public?
public access object storage High Performance
Related questions
- Can i use my own public cloud vm with floating ip as internet gatewaway for my private network?
12892
26.01.2026 08:13
- IPv6 subnet/extra IPv6 IPs on cloud instances/VPS
11101
31.01.2018 07:31
- Problem with Windows Server 2019 activation
10614
30.12.2020 04:04
- Is the Plesk License included?
10169
02.01.2018 11:56
- Ubuntu 20.04 image in OVH has been marked as DEPECRATED
9172
04.12.2020 23:28
- Automatic Block storage backup - how?
8325
06.05.2020 17:31
- Private Network shared between two or more Public Cloud projects
7677
11.03.2021 13:19
- Setup clickhouse with s3 high performance storage class (express onezone)
7595
16.10.2025 13:28
- Orders for Public Cloud project get cancelled
6978
02.07.2025 16:06
- Error has occurred creating your Public Cloud project
6794
08.10.2021 08:52