8000 Implement EC2 support through Moto by brettneese · Pull Request #1363 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Implement EC2 support through Moto #1363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix whitespace linting issues
  • Loading branch information
brettneese committed Jun 11, 2019
commit 6200a44e945a58d632dfe27bdb2c3bc5b309583c
3 changes: 2 additions & 1 deletion localstack/services/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,10 @@ def start_secretsmanager(port=None, asynchronous=False):


def start_ec2(port=None, asynchronous=False):
port = port or config.PORT_EC2
port = port or config.PORT_EC2
return start_moto_server('ec2', port, name='EC2', asynchronous=asynchronous)


# ---------------
# HELPER METHODS
# ---------------
Expand Down
0