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

9
moto/iam/utils.py Normal file
View file

@ -0,0 +1,9 @@
import random
import string
def random_resource_id():
size = 20
chars = range(10) + list(string.lowercase)
return ''.join(unicode(random.choice(chars)) for x in range(size))