{"id":13929755,"url":"https://github.com/wbingli/awscli-plugin-endpoint","last_synced_at":"2026-02-21T01:31:43.877Z","repository":{"id":15304590,"uuid":"77864494","full_name":"wbingli/awscli-plugin-endpoint","owner":"wbingli","description":" An awscli plugin to configure service endpoint from aws configure file","archived":false,"fork":false,"pushed_at":"2023-02-14T04:46:35.000Z","size":26,"stargazers_count":208,"open_issues_count":10,"forks_count":24,"subscribers_count":6,"default_branch":"master","last_synced_at":"2026-01-02T13:16:09.206Z","etag":null,"topics":["aws-cli","plugin"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wbingli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-02T22:00:04.000Z","updated_at":"2025-10-30T15:47:42.000Z","dependencies_parsed_at":"2024-06-18T18:14:38.464Z","dependency_job_id":"8eedd8b0-0e2c-4ddf-aac5-78d5f2fcac59","html_url":"https://github.com/wbingli/awscli-plugin-endpoint","commit_stats":{"total_commits":23,"total_committers":8,"mean_commits":2.875,"dds":0.5217391304347826,"last_synced_commit":"164c3350587be19451a87fb7d4c589eae584e2e8"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/wbingli/awscli-plugin-endpoint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbingli%2Fawscli-plugin-endpoint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbingli%2Fawscli-plugin-endpoint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbingli%2Fawscli-plugin-endpoint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbingli%2Fawscli-plugin-endpoint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wbingli","download_url":"https://codeload.github.com/wbingli/awscli-plugin-endpoint/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbingli%2Fawscli-plugin-endpoint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29670124,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T00:11:43.526Z","status":"ssl_error","status_checked_at":"2026-02-20T23:52:33.807Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws-cli","plugin"],"created_at":"2024-08-07T18:02:31.944Z","updated_at":"2026-02-21T01:31:43.839Z","avatar_url":"https://github.com/wbingli.png","language":"Python","readme":"awscli-plugin-endpoint\n=============\n\nThis awscli plugin provides service endpoint configuration **per service** on profile.\n\n------------\nInstallation\n------------\n\nThe easiest way to install awscli-plugin-endpoint is to use `pip`:\n\n    $ pip install awscli-plugin-endpoint\n\nYou can also install the latest package from GitHub source which can contain changes not yet pushed to PyPI:\n\n    $ pip install git+https://github.com/wbingli/awscli-plugin-endpoint.git\n\nor, if you install `awscli` via Homebrew, which bundles its own python, install as following:\n\n    $ /usr/local/opt/awscli/libexec/bin/pip install awscli-plugin-endpoint\n\nRegardless of the installation method, make note of the package installation path (e.g. `~/Library/Python/3.7/lib/python/site-packages`). It will be needed if you are using AWS CLI v2.\n\n---------------\nGetting Started\n---------------\n\nBefore using awscli-plugin-endpoint plugin, you need to [configure awscli](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html) first.\n\n**MUST**: Once that's done, to enable `awscli-plugin-endpoint` plugin, you can run:\n\n    $ aws configure set plugins.endpoint awscli_plugin_endpoint\n\nThe above command adds below section to your aws config file. You can also directly edit your `~/.aws/config` with below configuration.\n\n    [plugins]\n    endpoint = awscli_plugin_endpoint\n\nIf you are configuring AWS CLI v2 to use the endpoint plugin, you will need to add an additional configuration setting, replacing \"site-packages-path\" with the installation path noted above:\n\n    $ aws configure set plugins.cli_legacy_plugin_path site-packages-path\n\nThe configuration file will now have two values in the plugin section:\n\n    [plugins]\n    endpoint = awscli_plugin_endpoint\n    cli_legacy_plugin_path = site-packages-path\n\nTo add endpoint configure to a profile(assuming you have a **local** profile), you can run:\n\n    $ aws configure --profile local set dynamodb.endpoint_url http://localhost:8000\n\nThe above command adds below section to your profile:\n\n    [profile local]\n    dynamodb =\n        endpoint_url = http://localhost:8000\n\nNow you can access your local dynamodb just use profile:\n\n    $ aws dynamodb list-tables --profile local\n\n## One more example with S3 configuration\n\nAdd endpoint configuration to the profile:\n\n    $ aws configure --profile wasabi set s3.endpoint_url https://s3.wasabisys.com\n\nThe profile will looks like below:\n\n    [profile wasabi]\n    region = us-east-1\n    s3 =\n        endpoint_url = https://s3.wasabisys.com\n\nNow you can use `aws s3` command with this profile as following:\n\n    $ aws s3 ls --profile wasabi\n\nOne more thing, the endpoint is technically per **sub command**. Take S3 as example, above S3 configuration will not work for S3 low level CLI `aws s3api`.  To make `s3api` work with this endpoint, you should add endpoint to this sub command as well:\n\n    [profile wasabi]\n    region = us-east-1\n    s3 =\n        endpoint_url = https://s3.wasabisys.com\n    s3api =\n        endpoint_url = https://s3.wasabisys.com\n\nNow you can use `aws s3api` command with this profile as following:\n\n    $ aws s3api --profile wasabi list-buckets\n\n\nWorking with Secure Connections\n------------------\nBy default, awscli verifies the certificates presented for all HTTPS requests.\nThere are two options for working with self-signed or otherwise untrusted\ncertificates:\n\n* `ca_bundle`\n\n  If the certificate is long-lived, or any new certificates will be issued by\n  a long-lived certificate authority, you may want to provide an alternate\n  set of trusted certificates with `ca_bundle`. This is comparable to the\n  `--ca-bundle` command line option, and may be specified either per-profile\n  or per-subcommand:\n\n      [profile local1]\n      ca_bundle = /path/to/bundle.crt\n      s3 =\n          endpoint_url = https://localhost:8000\n\n      [profile local2]\n      ec2 =\n          ca_bundle = /path/to/another-bundle.crt\n          endpoint_url = https://localhost:8888\n\n* `verify_ssl`\n\n  If the certificate will be frequently refreshed, you may want to simply\n  disable verification with `verify_ssl = false`. This is comparable to the\n  `--no-verify-ssl` command line option:\n\n      [profile local]\n      dynamodb =\n          verify_ssl = false\n          endpoint_url = https://localhost:8000\n\n\n","funding_links":[],"categories":["others","Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwbingli%2Fawscli-plugin-endpoint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwbingli%2Fawscli-plugin-endpoint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwbingli%2Fawscli-plugin-endpoint/lists"}