- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
创建 zip 文件后,我需要将其上传到 s3 存储桶。我知道 s3_deployment 包,但它不适合我的用例,因为我只需要在堆栈创建时上传一次文件。 s3_deployment 包会在每次更新时上传 zip。
我定义了以下自定义资源,但我不确定如何将文件主体传递给自定义资源。我试过以二进制模式打开文件,但返回错误。
app_data_bootstrap = AwsCustomResource(self, "BootstrapData",
on_create={
"service": "S3",
"action": "putObject",
"parameters": {
"Body": open('app_data.zip', 'rb'),
"Bucket": f"my-app-data",
"Key": "app_data.zip",
},
"physical_resource_id": PhysicalResourceId.of("BootstrapDataBucket")
},
policy=AwsCustomResourcePolicy.from_sdk_calls(resources=AwsCustomResourcePolicy.ANY_RESOURCE)
)
最佳答案
我认为这是不可能的,除非您编写自定义脚本并在 cdk deploy
之前运行以将本地文件上传到中间 S3 存储桶。然后,您可以编写自定义资源,将 on_create
事件中的中间存储桶的内容复制到通过 CDK 创建的存储桶。
阅读 CDK 文档中 s3_deployment
中的这段内容:
This is what happens under the hood:
When this stack is deployed (either via cdk deploy or via CI/CD), the contents of the local website-dist directory will be archived and uploaded to an intermediary assets bucket. If there is more than one source, they will be individually uploaded.
The BucketDeployment construct synthesizes a custom CloudFormation resource of type Custom::CDKBucketDeployment into the template. The source bucket/key is set to point to the assets bucket.
The custom resource downloads the .zip archive, extracts it and issues aws s3 sync --delete against the destination bucket (in this case websiteBucket). If there is more than one source, the sources will be downloaded and merged pre-deployment at this step.
因此,为了执行第 1 步的复制操作,您必须编写一个小脚本来创建一个中间存储桶并将您的本地文件上传到其中。该脚本的示例可以是这样的:
#!/bin/sh
aws s3 mb <intermediary_bucket> --region <region_name>
aws s3 sync <intermediary_bucket> s3://<your_bucket_name>
那么你的自定义资源可以是这样的:
*请注意,这适用于复制一个对象,您可以更改代码以复制多个对象。
import json
import boto3
import cfnresponse
def lambda_handler(event, context):
print('Received request:\n%s' % json.dumps(event, indent=4))
resource_properties = event['ResourceProperties']
if event['RequestType'] in ['Create']: #What happens when resource is created
try:
s3 = boto3.resource('s3')
copy_source = {
'Bucket': 'intermediary_bucket',
'Key': 'path/to/filename.extension'
}
bucket = s3.Bucket('otherbucket')
obj = bucket.Object('otherkey')
obj.copy(copy_source)
except:
cfnresponse.send(event, context, cfnresponse.FAILED, {})
raise
else:
cfnresponse.send(event, context, cfnresponse.SUCCESS,
{'FileContent': response['fileContent'].decode('utf-8')})
elif event['RequestType'] == 'Delete': # What happens when resource is deleted
cfnresponse.send(event, context, cfnresponse.SUCCESS, {})
所有这些的替代方法是在 AWS CDK 的 Github repo 中打开一个问题并要求他们添加您的用例。
关于aws-cdk - 如何使用 aws cdk 中的自定义资源将文件上传到 s3 存储桶,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63427486/
我是一名优秀的程序员,十分优秀!