binxio / cfn-secret-provider

A CloudFormation custom resource provider for deploying secrets and keys
Apache License 2.0
141 stars 70 forks source link

Installation Demo seems out of date #20

Closed AdamLenda closed 6 years ago

AdamLenda commented 6 years ago
aws cloudformation create-stack \
    --capabilities CAPABILITY_IAM \
    --stack-name cfn-secret-provider \
    --template-body file://cloudformation/cfn-resource-provider.json

fails with:

An error occurred (ValidationError) when calling the CreateStack operation: Template format error: unsupported structure.

I checked the folder and found it is a Yaml file, so made that change and it worked:

aws cloudformation create-stack \
    --capabilities CAPABILITY_IAM \
    --stack-name cfn-secret-provider \
    --template-body file://cloudformation/cfn-resource-provider.yaml