1// Place in bucket permissions - CORS
2[
3 {
4 "AllowedHeaders": [
5 "*"
6 ],
7 "AllowedMethods": [
8 "GET",
9 "POST",
10 "PUT",
11 "DELETE",
12 ],
13 "AllowedOrigins": [
14 "*"
15 ],
16 "ExposeHeaders": []
17 }
18]