Venu | Removing keys

This commit is contained in:
new 2014-11-04 17:48:31 +05:30
parent 05a69458aa
commit 8032eda577
2 changed files with 10 additions and 1 deletions

View File

@ -36,7 +36,7 @@ as a hypervisor while continuing to be able to manage the existing private cloud
You are now all set cloud burst!
## What is supported!
## What's supported!
Launch
Reboot
Terminate

9
ec2driver_config.py Normal file
View File

@ -0,0 +1,9 @@
import os
if os.environ.get('MOCK_EC2'):
print "test environment"
from ec2driver_test_config import *
else:
print "prod env"
from ec2driver_standard_config import *