Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(contrib/ec2): add json extension to cloudformation template
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
developerinlondon committed Jul 12, 2014
1 parent fe8a3c2 commit 94706e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion contrib/ec2/gen-json.py
Expand Up @@ -2,7 +2,7 @@
import json
import os

template = json.load(open("deis.template",'r'))
template = json.load(open("deis.template.json",'r'))

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

0 comments on commit 94706e7

Please sign in to comment.