Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

Fixing typos and consistency in CloudFormation references. #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# yamlcf
Plain YAML, plain CloudFormation command line client. Based on boto3.

## Comapres to tool xy
## Compares to tool xy
What is the difference to the existing ```aws cloudformation [...]``` tool?

- YAML support. Plain cloudformation json is also supported since json is also valid yaml.
- Optimized for commandline usage and continous integration tools like jenkins:
- YAML support. Plain CloudFormation json is also supported since json is also valid yaml.
- Optimized for commandline usage and continuous integration tools like Jenkins:
- Easy to see progress: Live log output.
- Easy to use in build scripts: Waits for success and fails on error.
- Convention-over-configuration: If you name your cloudformation file ```mystack.cf.yaml``` then yamlcf uses by default
```mystack``` as stackname.


What is the difference to high-level abstractions e.g. terraform? yamlcf does not extend CloudFormation or introduce a custom DSL, it is just a tool for easier usage.
You can simply rely on the given cloudformation documentation of AWS (and the AWS support).
You can simply rely on the given CloudFormation documentation of AWS (and the AWS support).

No tool dependency: Just convert your yaml back to json and use the AWS cloud-formation tools.
No tool dependency: Just convert your yaml back to json and use the AWS CloudFormation tools.

## Usage

Expand Down