Is CloudFormation free?
Yes, CloudFormation itself is free. You pay only for resources it creates. No additional charges for the orchestration service.
What is CloudFormation?
CloudFormation is AWS's infrastructure as code service. Define resources in YAML or JSON templates. AWS creates and manages the stack.
CloudFormation vs Terraform?
CloudFormation is AWS-native with best AWS integration. Terraform is multi-cloud. CloudFormation for AWS-only; Terraform if you use multiple clouds.
What are CloudFormation stacks?
A stack is a collection of resources defined in a template. Create, update, or delete together. Nested stacks allow modular templates.
Should I use CloudFormation or CDK?
CDK if you prefer programming languages. CloudFormation for YAML templates or if your team knows it. CDK compiles to CloudFormation anyway.