Fix merge conflicts. Add basic cloudformation support. Closes #111.

This commit is contained in:
Steve Pulec 2014-03-27 19:12:53 -04:00
commit ef876dd27e
28 changed files with 2473 additions and 11 deletions

View file

@ -50,6 +50,14 @@ def random_eip_association_id():
return random_id(prefix='eipassoc')
def random_gateway_id():
return random_id(prefix='igw')
def random_route_table_id():
return random_id(prefix='rtb')
def random_eip_allocation_id():
return random_id(prefix='eipalloc')
@ -123,8 +131,6 @@ def keypair_names_from_querystring(querystring_dict):
keypair_names.append(value[0])
return keypair_names
filter_dict_attribute_mapping = {
'instance-state-name': 'state'
}