author John Corrales <jjcorrales3@gmail.com> 1576380101 -0800 committer John Corrales <jjcorrales3@gmail.com> 1576633072 -0800 added send_ssh_public_key
11 lines
251 B
Python
11 lines
251 B
Python
import boto
|
|
from moto.core import BaseBackend
|
|
|
|
|
|
class Ec2InstanceConnectBackend(BaseBackend):
|
|
pass
|
|
|
|
|
|
ec2_instance_connect_backends = {}
|
|
for region in boto.ec2.regions():
|
|
ec2_instance_connect_backends[region.name] = Ec2InstanceConnectBackend()
|