# cfmerge

> Merge CloudFormation templates into one

Latest version **0.0.3** (published 2018-05-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install cfmerge
pnpm add cfmerge
yarn add cfmerge
bun add cfmerge
```

Provides the command `cfmerge`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2018-05-11 |
| First published | 2018-05-11 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ivan Kluzak |
| Maintainers | ikluzak |
| Keywords | CloudFormation, Cloud, Formation, merge |

## Links

- npm: https://www.npmjs.com/package/cfmerge
- npm.io page: https://npm.io/package/cfmerge

## Dependencies (1)

- [yamljs](https://npm.io/package/yamljs.md) ^0.3.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2018-05-11
- 0.0.2 — 2018-05-11
- 0.0.1 — 2018-05-11

## README

//
// NOTE:

This package is under construction,

The eventual goal is to allow me to structure my projects how I want and
provide bits of extracted swagger or yaml and merge it all together into
a single cloud formation template.

I know you can use cloudformation snippets and includes but that doesn't
seem to be exactly what I want so i'm experimenting with this.

-----

I'm expecting the cfmerge.yml config file to look something like this:

```
# Generate a 'whole project' CloudFormation template at build time
version: 0.1

# Define the API-gw used for this project and use a swagger file we exported from API-gw
apigw:
  exclude: true		# Skip this block for now
  rname: ResourceName
  name: API-Name
  description: Your API Description
  type: AWS::ApiGateway::RestApi
  file: apigw/swagger.yml

#
# Define the lambda's used by this project
# Output template files from "aws cloudformation package"
lambda:
  files:
    - /tmp/cf-package-out1.yml
    - /tmp/cf-package-out2.yml

# Define any necessary tables
dynamodb:
  exclude: true		# Skip this block for now
  files:
    - table1
    - table2
```

---
_Source: https://npm.io/package/cfmerge · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
