moto/moto/ec2/urls.py
Taro Sato 02324ad708 Add more availability regions and implement default VPC (#773)
Fix filter name for availability zone

Fix bug assuming dict keys are ordered

Fix tests

Fix tests

Fix bug
2017-01-11 20:37:57 -05:00

12 lines
189 B
Python

from __future__ import unicode_literals
from .responses import EC2Response
url_bases = [
"https?://ec2.(.+).amazonaws.com(|.cn)",
]
url_paths = {
'{0}/': EC2Response.dispatch,
}