SYSTEM Cited by 1 source
AWS CloudFormation¶
What it is¶
AWS CloudFormation is AWS's native declarative Infrastructure-as-Code service: YAML/JSON templates describe a desired set of AWS resources; CloudFormation creates/updates/deletes them as a stack, tracks drift, and provides ordered create/update/rollback semantics. Underpins CDK (which synthesises to CloudFormation) and StackSets (which orchestrates stacks across many accounts).
Stub page; detailed template-language semantics out of scope.
Seen in¶
- sources/2026-02-25-aws-6000-accounts-three-people-one-platform — the IaC substrate under ProGlove's fleet-wide deployments via StackSets + CodePipeline.
Related¶
- systems/aws-stacksets — multi-account fan-out.
- systems/aws-codepipeline — orchestration.
- systems/aws-cdk — imperative wrapper.