Skip to content

Commit 29cca64

Browse files
authored
Merge pull request #3 from axa-group/poveden/badges
Add NPM and Node.js shields.io badges
2 parents ec2d7df + 42316cd commit 29cca64

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# `arm-template-merge`
22

3+
[![npm package](https://img.shields.io/npm/v/arm-template-merge.svg?logo=npm)](https://www.npmjs.com/package/arm-template-merge)
4+
[![Node.js version](https://img.shields.io/node/v/arm-template-merge.svg)](https://nodejs.org/)
5+
36
> _Azure Resource Manager (ARM) Template Merge_
47
58
This tool merges multiple [Azure Resource Manager (ARM) template](https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-authoring-templates) files into a single template file.
@@ -60,7 +63,7 @@ The following rules are used for merging ARM template files:
6063

6164
- All files' `functions` and `resources` collections will each be combined into a single collection. Objects within a collection that are exact copies will yield a single object in the merged collection:
6265

63-
```json
66+
```text
6467
[ | [ | [
6568
{ <object-A> }, --|-------------------------|--> { <object-A> },
6669
| { <object-B> }, --|--> { <object-B> },
@@ -70,7 +73,7 @@ The following rules are used for merging ARM template files:
7073

7174
- All files' `parameters`, `variables` and `outputs` objects will each be combined into a single object. Files declaring the same key within an object MUST have the same exact value, or an error will be thrown:
7275

73-
```json
76+
```text
7477
{ | { | {
7578
"A": <value-A>, --|-------------------------|--> "A": <value-A>,
7679
| "B": <value-B>, --|--> "B": <value-B>,

0 commit comments

Comments
 (0)