是否可以在serverless.yaml文件中指定要上传到S3存储桶资源的静态文件?
即
resources:
Resources:
PropertiesBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: ${self:provider.stage}-MyBucket
File:
./myfile.json
????
答案 0 :(得分:1)
任何官方AWS CloudFormation资源都不支持向S3存储桶添加静态文件,但gilt/cloudformation-helpers有自定义资源Put S3 Objects,可以执行此操作。有关安装和使用的说明,请参阅Usage。