From a2523790919b053d49928fcb3add6fb556bdedf3 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Fri, 23 Mar 2012 13:17:09 -0700 Subject: [PATCH] Change run_parser.py to run t1.micro rather then m1.large Signed-off-by: Steven Dake --- bin/run-parser.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/run-parser.py b/bin/run-parser.py index d0fb1aa0a..fef77d361 100755 --- a/bin/run-parser.py +++ b/bin/run-parser.py @@ -30,9 +30,12 @@ with open(filename) as f: (stack_name, tmp) = os.path.splitext(os.path.basename(filename)) setparam(blob, 'AWS::StackName', stack_name) +# Don't immediately see a way to have key name as a parameter and also +# file injection and monitoring +# need to insert key on creation and know what private key is setparam(blob, 'KeyName', '309842309484') # <- that gets inserted into image - setparam(blob, 'InstanceType', 'm1.large') + setparam(blob, 'InstanceType', 't1.micro') setparam(blob, 'DBUsername', 'eddie.jones') setparam(blob, 'DBPassword', 'adm1n') setparam(blob, 'DBRootPassword', 'admone')