gpt4 book ai didi

amazon-web-services - AWS Cloudformation Codecommit S3 400 异常

转载 作者:行者123 更新时间:2023-12-03 07:33:16 26 4
gpt4 key购买 nike

我创建了一个cloudformation模板,它在codecommit中创建了一个新的存储库,它还需要从S3中提取source.zip并将其复制到存储库。但在运行模板时,我看到 400 个错误请求。

Cloudformation Stack

CF 模板:

 AWSTemplateFormatVersion: 2010-09-09
Description: my First code commit CF template

Parameters:
DemoBucket:
Type: String
Description: Bucket in which you have code
Default: jaivijaycccf
DemoKey:
Type: String
Description: key of zipped code
Default: demo.zip

Resources:
HelloWorld:
Type: AWS::CodeCommit::Repository
Properties:
RepositoryName: HelloWorldApp
RepositoryDescription: This is a repository for my project with code from MySourceCodeBucket
Code:
BranchName: development
S3:
Bucket: !Ref DemoBucket
Key: !Ref DemoKey
ObjectVersion: 1

最佳答案

如果存储源代码的 S3 存储桶不使用对象版本控制,则向 Cloudformation 模板提供 ObjectVersion 参数将导致其失败。
删除不必要的参数将解决问题。

在您确认没有使用对象版本控制后,我将将此添加为答案。

关于amazon-web-services - AWS Cloudformation Codecommit S3 400 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74666694/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com