首页 > 解决方案 > 无法在 cloudformation 中创建简单的存储桶

问题描述

无法创建基本存储桶。

testfolder:
  Type: AWS::S3::Buket
  Properties:
    BucketName: "test-storage-for-dev"

错误是

调用 CreateChangeSet 操作时发生错误 (ValidationError):模板格式错误:无法识别的资源类型:[AWS::S3::Buket]

标签: amazon-web-servicesamazon-cloudformation

解决方案


有一个拼写错误

代替:

AWS::S3::Buket

你应该Bucket有如文档所示:

AWS::S3::Bucket

推荐阅读