AbishKumar
AbishKumar

Reputation: 133

Can't create simple bucket in cloudformation

Can't create basic bucket.

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

Error is

An error occurred (ValidationError) when calling the CreateChangeSet operation: Template format error: Unrecognized resource types: [AWS::S3::Buket]

Upvotes: 0

Views: 114

Answers (1)

Marcin
Marcin

Reputation: 238199

There is a spelling mistake.

Instead of:

AWS::S3::Buket

you should have Bucket as shown in the docs:

AWS::S3::Bucket

Upvotes: 3

Related Questions