diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e3dbe..caf711c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* v2.4: Add endpoint config for Resource Access Manager * v2.3: Add endpoint config for Amazon EventBridge Scheduler * v2.2: Add endpoint configs for `emr-serverless` and a few other services * v2.1: Consider `AWS_ENDPOINT_URL` configuration when resolving service endpoints diff --git a/localstack_client/config.py b/localstack_client/config.py index 59b5b23..9163d12 100644 --- a/localstack_client/config.py +++ b/localstack_client/config.py @@ -120,6 +120,7 @@ "route53domains": 4566, "keyspaces": 4566, "scheduler": 4566, + "ram": 4566, } # TODO remove service port mapping above entirely diff --git a/setup.cfg b/setup.cfg index 22e762c..b7cc704 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 2.3 +version = 2.4 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud