简体   繁体   中英

What should be inside “Parameters” and what in “Resoures” in AWS Cloudformation json template?

I started to change/add more things, in big cloudformation json template of big project. When file was uploaded, I get error:

Error Template validation error: Invalid template parameter property 'Properties'

I didn't liked AWS documentation. And looking for simple explanation what should be in "Parameters" and what in "Resoures" in AWS Cloudformation json template? Or what exactly I can understand from that error output?

Thanks!

The Parameters section contains information that you want to provide to your stack when it is configured. For example, you may want to create some services that all share a common S3 bucket that already exists. In that case, one of the Parameters would be the name of that S3 bucket.

The Resources section describes the things you want your stack to create: EC2 instances, SQS queues, SNS topics, and so on.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM