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
- IPv6 subnet/extra IPv6 IPs on cloud instances/VPS
3908
31.01.2018 07:31
- Problem with Windows Server 2019 activation
3763
30.12.2020 04:04
- Is the Plesk License included?
3609
02.01.2018 11:56
- Ubuntu 20.04 image in OVH has been marked as DEPECRATED
2383
04.12.2020 23:28
- Automatic Block storage backup - how?
2045
06.05.2020 17:31
- Private Network shared between two or more Public Cloud projects
1988
11.03.2021 13:19
- CORS in Object Storage
1838
03.11.2020 06:02
- [ALPHA] On-demand bare metal instances in Public Cloud
1824
14.05.2019 07:08
- Error has occurred creating your Public Cloud project
1755
08.10.2021 08:52
- Nested virtual machines
1516
18.10.2018 14:33