Skip to content
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

pass endpoint_url for local dynamodb with linting #118

Merged
merged 1 commit into from
Dec 30, 2021
Merged
Changes from all commits
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
3 changes: 3 additions & 0 deletions dynamodump/dynamodump.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def _get_aws_client(
region: str = None,
secret_key: str = None,
access_key: str = None,
endpoint_url: str = None,
):
"""
Build connection to some AWS service.
Expand Down Expand Up @@ -103,6 +104,7 @@ def _get_aws_client(
region_name=aws_region,
aws_access_key_id=access_key,
aws_secret_access_key=secret_key,
endpoint_url=endpoint_url,
)
return client

Expand Down Expand Up @@ -1217,6 +1219,7 @@ def main():
access_key=args.accessKey,
secret_key=args.secretKey,
region=args.region,
endpoint_url="http://" + args.host + ":" + args.port,
)
sleep_interval = LOCAL_SLEEP_INTERVAL
else:
Expand Down