From: Steven Dake Date: Fri, 23 Mar 2012 20:17:09 +0000 (-0700) Subject: Change run_parser.py to run t1.micro rather then m1.large X-Git-Tag: 2014.1~2159 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=a2523790919b053d49928fcb3add6fb556bdedf3;p=openstack-build%2Fheat-build.git Change run_parser.py to run t1.micro rather then m1.large Signed-off-by: Steven Dake --- diff --git a/bin/run-parser.py b/bin/run-parser.py index d0fb1aa0..fef77d36 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')