Started ACM framework

This commit is contained in:
Terry Cain 2017-09-21 21:44:34 +01:00
commit 9e19243310
No known key found for this signature in database
GPG key ID: 14D90844E4E9B9F3
4 changed files with 85 additions and 0 deletions

19
moto/acm/models.py Normal file
View file

@ -0,0 +1,19 @@
from __future__ import unicode_literals
from moto.core import BaseBackend, BaseModel
from moto.ec2 import ec2_backends
class Certificate(BaseModel):
pass
class AWSCertificateManagerBackend(BaseBackend):
def __init__(self):
self._certificates = {}
acm_backends = {}
for region, ec2_backend in ec2_backends.items():
acm_backends[region] = AWSCertificateManagerBackend()