Started ACM framework
This commit is contained in:
parent
606fa0afb5
commit
9e19243310
4 changed files with 85 additions and 0 deletions
19
moto/acm/models.py
Normal file
19
moto/acm/models.py
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue