mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
19 lines
453 B
YAML
19 lines
453 B
YAML
|
Resources:
|
||
|
|
||
|
DataBucket:
|
||
|
Type: AWS::S3::Bucket
|
||
|
Properties:
|
||
|
BucketName: ${self:custom.environment.DATA_BUCKET}
|
||
|
AccessControl: PublicRead
|
||
|
CorsConfiguration:
|
||
|
CorsRules:
|
||
|
- AllowedOrigins:
|
||
|
- "*"
|
||
|
AllowedMethods:
|
||
|
- GET
|
||
|
AllowedHeaders:
|
||
|
- Content-Length
|
||
|
WebsiteConfiguration:
|
||
|
IndexDocument: index.html
|
||
|
ErrorDocument: error.html
|