Skip to content

Commit 94706e7

Browse files
fix(contrib/ec2): add json extension to cloudformation template
The CloudFormation Template has a .template extension although its a json file. This makes it difficult to parse/edit it as editors dont recognize it as JSON file. So added the .json extension behind its name and also updated gen-json.py which uses it.
1 parent fe8a3c2 commit 94706e7

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

contrib/ec2/gen-json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import json
33
import os
44

5-
template = json.load(open("deis.template",'r'))
5+
template = json.load(open("deis.template.json",'r'))
66

77
with open('../coreos/user-data','r') as f:
88
lines = f.readlines()

0 commit comments

Comments
 (0)