Boolean that toggles lazy loading of services. If eager loading is enabled, services are started at LocalStack startup rather than their first use. Be aware that eager loading increases the LocalStack startup time.
SERVICES
s3,sqs
A comma-delimited string of services. Check the internal health endpoint/_localstack/health for valid service names. If SERVICES is set LocalStack will only load the listed services. All other services will be disabled and cannot be used.
ALLOW_NONSTANDARD_REGIONS
0 (default)
Allows the use of non-standard AWS regions. By default, LocalStack only accepts standard AWS regions.
PARITY_AWS_ACCESS_KEY_ID
0 (default)
Enables the use production-like access key IDs. By default, LocalStack issues keys with LSIA... and LKIA... prefix, and will reject keys that start with ASIA... or AKIA....
CLI
These options are applicable when using the CLI to start LocalStack.
Variable
Example Values
Description
LOCALSTACK_VOLUME_DIR
~/.cache/localstack/volume (on Linux)
The location on the host of the LocalStack volume directory mount. See Filesystem Layout
The path where LocalStack can find configuration profiles and other CLI-specific configuration
Docker
Options to configure how LocalStack interacts with Docker.
Variable
Example Values
Description
DOCKER_FLAGS
Allows to pass custom flags (e.g., volume mounts) to “docker run” when running LocalStack in Docker.
DOCKER_SOCK
/var/run/docker.sock
Path to local Docker UNIX domain socket
DOCKER_BRIDGE_IP
172.17.0.1
IP of the docker bridge used to enable access between containers
LEGACY_DOCKER_CLIENT
0|1
Whether LocalStack should use the command-line Docker client and subprocess execution to run Docker commands, rather than the Docker SDK.
DOCKER_CMD
docker (default), sudo docker
Shell command used to run Docker containers (only used in combination with LEGACY_DOCKER_CLIENT)
FORCE_NONINTERACTIVE
When running with Docker, disables the --interactive and --tty flags. Useful when running headless.
Local AWS Services
This section covers configuration options that are specific to certain AWS services.
AppSync
Variable
Example Values
Description
GRAPHQL_ENDPOINT_STRATEGY
legacy|domain|path
Governs how AppSync endpoints are created to access a GraphQL API (see AppSync Endpoints)
Batch
Variable
Example Values
Description
BATCH_DOCKER_FLAGS
-e TEST_ENV=1337
Additional flags provided to the batch container. Same restrictions as LAMBDA_DOCKER_FLAGS.
BigData (EMR, Athena, Glue)
Variable
Example Values
Description
BIGDATA_DOCKER_NETWORK
Network the bigdata should be connected to. The LocalStack container has to be connected to that network as well. Per default, the bigdata container will be connected to a network LocalStack is also connected to.
BIGDATA_DOCKER_FLAGS
Additional flags for the bigdata container. Same restrictions as LAMBDA_DOCKER_FLAGS.
DocumentDB
Variable
Example Values
Description
DOCDB_PROXY_CONTAINER
0 (default) |1
Whether the DocumentDB starts the MongoDB container proxied over LocalStack container. When enabled lambda functions can use the Endpoint configuration of the DocDB cluster or instance to connect to the DocumentDB. By default the container starts without proxy as standalone container.
DynamoDB
Variable
Example Values
Description
DYNAMODB_ERROR_PROBABILITY
Decimal value between 0.0(default) and 1.0
Randomly inject ProvisionedThroughputExceededException errors into DynamoDB API responses.
DYNAMODB_HEAP_SIZE
256m (default), 1G
Sets the JAVA EE maximum memory size for DynamoDB; full table scans require more memory
DYNAMODB_SHARE_DB
0|1
When activated, DynamodDB will use a single database instead of separate databases for each credential and region.
DYNAMODB_IN_MEMORY
0 (default) |1
When activated, DynamodDB will start in in-memory mode, which can have a faster throughput. If you use this options, both persistence and cloud pods will not work for DynamoDB
DYNAMODB_OPTIMIZE_DB_BEFORE_STARTUP
0|1
Optimize the database tables in the store before starting
DYNAMODB_DELAY_TRANSIENT_STATUSES
0|1
When activated, DynamoDB will introduce artificial delays in resource creation to simulate the actual cloud service more closely. Currently works only for CREATING and DELETING online index statuses.
DYNAMODB_CORS
*
Enable CORS support for specific allow-list list the domains separated by , use * for public access (default is *)
ECS
Variable
Example Values
Description
ECS_REMOVE_CONTAINERS
0|1 (default)
Remove Docker containers associated with ECS tasks after execution. Disabling this and dumping container logs might help with troubleshooting failing ECS tasks.
ECS_DOCKER_FLAGS
--privileged, --dns 1.2.3.4
Additional flags passed to Docker when creating ECS task containers. Same restrictions as LAMBDA_DOCKER_FLAGS.
EC2
Variable
Example Values
Description
EC2_DOCKER_FLAGS
--privileged
Additional flags passed to Docker when launching containerized instances. Same restrictions as LAMBDA_DOCKER_FLAGS.
EC2_DOWNLOAD_DEFAULT_IMAGES
0|1 (default)
At startup, LocalStack Pro downloads latest Ubuntu images from Docker Hub for use as AMIs. This can be disabled for security reasons.
EC2_MOUNT_BLOCK_DEVICES
1|0 (default)
Whether to create and mount user-specified EBS block devices into EC2 container instances.
EC2_EBS_MAX_VOLUME_SIZE
1000 (default)
Maximum size (in MBs) of user-specified EBS block devices mounted into EC2 container instances.
EKS
Variable
Example Values
Description
EKS_LOADBALANCER_PORT
8081 (default)
Local port on which the Kubernetes load balancer is exposed on the host.
EKS_K3S_IMAGE_TAG
v1.22.6-k3s1 (default)
Custom tag of the k8s/rancher image used to spin up Kubernetes clusters locally.
ElastiCache
Variable
Example Values
Description
PROVIDER_OVERRIDE_ELASTICACHE
legacy
Use the legacy ElastiCache provider.
Elasticsearch
Note
The OpenSearch configuration variables are used to manage both OpenSearch and ElasticSearch clusters.
See here.
IAM
Variable
Example Values
Description
ENFORCE_IAM
0 (default)|1
Enable IAM policy evaluation and enforcement. If this is disabled (the default), IAM policies will have no effect to your requests.
IAM_SOFT_MODE
0 (default)|1
Enable IAM soft mode. This leads to policy evaluation without actually denying access. Needs ENFORCE_IAM enabled as well. For more information, see Identity and Access Management.
Kinesis
Variable
Example Values
Description
KINESIS_ERROR_PROBABILITY
Decimal value between 0.0(default) and 1.0
Randomly inject ProvisionedThroughputExceededException errors into Kinesis API responses.
KINESIS_SHARD_LIMIT
100 (default), Infinity (to disable)
Integer value , causing the Kinesis API to start throwing exceptions to mimic the default shard limit.
KINESIS_ON_DEMAND_STREAM_COUNT_LIMIT
10 (default), Infinity (to disable)
Integer value , causing the Kinesis API to start throwing exceptions to mimic the default on demand stream count limit.
KINESIS_LATENCY
500 (default), 0 (to disable)
Integer value of milliseconds, causing the Kinesis API to delay returning a response in order to mimic latency from a live AWS call.
Lambda
Note
The legacy Lambda implementation has been removed since LocalStackĀ 3.0 (Docker latest since 2023-11-09).
-Please consult the migration guide for more information.
Variable
Example Values
Description
BUCKET_MARKER_LOCAL
hot-reload (default)
Magic S3 bucket name for Hot Reloading. The S3Key points to the source code on the local file system.
HOSTNAME_FROM_LAMBDA
localstack
Endpoint host under which APIs are accessible from Lambda containers (optional). This can be useful in docker-compose stacks to use the local container hostname if neither IP address nor container name of the main container are available (e.g., in CI). Often used in combination with LAMBDA_DOCKER_NETWORK.
Additional flags passed to Docker run|create commands. Supports environment variables, ports, volume mounts, extra hosts, networks, DNS servers, labels, ulimits, user, platform, and privileged mode.
LAMBDA_DOCKER_NETWORK
bridge (Docker default)
Docker network driver for the Lambda and ECS containers. Needs to be set to the network the LocalStack container is connected to. Limitation: host mode currently not supported.
LAMBDA_DOWNLOAD_AWS_LAYERS
1 (default, pro)
Whether to download public Lambda layers from AWS through a LocalStack proxy when creating or updating functions.
LAMBDA_IGNORE_ARCHITECTURE
0 (default)
Whether to ignore the AWS architectures (x86_64 or arm64) configured for the lambda function. Set to 1 to run cross-platform compatible lambda functions natively (i.e., Docker selects architecture).
LAMBDA_K8S_IMAGE_PREFIX
amazon/aws-lambda- (default, pro)
Prefix for images that will be used to execute Lambda functions in Kubernetes.
LAMBDA_KEEPALIVE_MS
600000 (default 10min)
Time in milliseconds until lambda shuts down the execution environment after the last invocation has been processed. Set to 0 to immediately shut down the execution environment after an invocation.
LAMBDA_LIMITS_CONCURRENT_EXECUTIONS
1000 (default)
The maximum number of events that functions can process simultaneously in the current Region. See AWS service quotas
LAMBDA_LIMITS_CODE_SIZE_ZIPPED
52428800 (default)
The maximum zip file size in bytes for the CreateFunction operation. Raising this limit enables the creation of larger Lambda functions without the need to upload the code to an S3 deployment bucket.
LAMBDA_LIMITS_CREATE_FUNCTION_REQUEST_SIZE
70167211 (default)
The maximum HTTP request size in bytes for the CreateFunction operation. Raising this limit enables larger HTTP requests including zipped file size.
LAMBDA_REMOVE_CONTAINERS
1 (default)
Whether to remove any Lambda Docker containers.
LAMBDA_RUNTIME_ENVIRONMENT_TIMEOUT
10 (default)
How many seconds Lambda will wait for the runtime environment to start up.
Customize the Docker image of Lambda runtimes, either by: a) pattern with <runtime> placeholder, e.g. custom-repo/lambda-<runtime>:2022 b) json dict mapping the <runtime> to an image, e.g. {"python3.9": "custom-repo/lambda-py:thon3.9"}
LAMBDA_SYNCHRONOUS_CREATE
0 (default)
Set to 1 to create lambda functions synchronously (not recommended).
LAMBDA_TRUNCATE_STDOUT
2000 (default)
Allows increasing the default char limit for truncation of lambda log lines when printed in the console. This does not affect the logs processing in CloudWatch.
MWAA
Variable
Example Values
Description
MWAA_PIP_TRUSTED_HOSTS
pypi.org,files.pythonhosted.org
Comma-separated list of hosts for which SSL verification is not performed when installing Python dependencies for MWAA environment.
OpenSearch
Variable
Example Values
Description
OPENSEARCH_CUSTOM_BACKEND
http://opensearch:9200
URL to a custom OpenSearch backend cluster. If this is set to a valid URL, then LocalStack will not create OpenSearch cluster instances, but instead forward all domains to the given backend (see Custom Opensearch Backends).
OPENSEARCH_MULTI_CLUSTER
1| 0
When activated, LocalStack will spawn one OpenSearch cluster per domain. Otherwise all domains will share a single cluster instance. This is ignored if OPENSEARCH_CUSTOM_BACKEND is set.
OPENSEARCH_ENDPOINT_STRATEGY
path|domain|port
Governs how domain endpoints are created to access a cluster (see Opensearch Endpoints).
SKIP_INFRA_DOWNLOADS
1 | 0 (default)
Deprecated since 1.3.0 Whether to skip downloading additional infrastructure components (e.g., specific Elasticsearch versions)
RDS
Variable
Example Values
Description
RDS_CLUSTER_ENDPOINT_HOST_ONLY
1 (default) | 0
Whether the cluster endpoint returns the host only (which is AWS parity). If set to 0 it will return <host>:<port>.
RDS_PG_CUSTOM_VERSIONS
0 | 1 (default)
Whether to install and use custom Postgres versions for RDS (or alternatively, use default version 11).
RDS_MYSQL_DOCKER
1 (default) | 0
Whether to disable MySQL engines (and use MariaDB instead). MySQL engine for cluster/instances will start in a new docker container. If you have troubles running MySQL in docker, you can disable the feature.
MYSQL_IMAGE
mysql:8.0
Defines a specific MySQL image that should be used when spinning up the MySQL engine. Only available if RDS_MYSQL_DOCKER is enabled.
MSSQL_IMAGE
mcr.microsoft.com/mssql/server:2022-latest
Defines a specific image that should be used when spinning up a SQL server engine.
S3
Variable
Example Values
Description
S3_DIR
Deprecated since 3.0.0 This is only supported for the legacy_v2 provider. Configure a global parent directory that contains all buckets as sub-directories (S3_DIR=/path/to/root) or an individual directory that will get mounted as special bucket names (S3_DIR=/path/to/root/bucket1:bucket1). Only available for Localstack Pro.
S3_SKIP_SIGNATURE_VALIDATION
0 | 1 (default)
Used to toggle validation of S3 pre-signed URL request signature. Set to 0 to validate.
S3_SKIP_KMS_KEY_VALIDATION
0 | 1 (default)
Used to toggle validation of provided KMS key in S3 operations.
PROVIDER_OVERRIDE_S3
legacy_v2 | v3 (default)
The new LocalStack-native S3 provider (v3) is active by default since LocalStack 3.0.
StepFunctions
Variable
Example Values
Description
PROVIDER_OVERRIDE_STEPFUNCTIONS
legacy | v2 (default)
The new LocalStack-native StepFunctions provider (v2) is active by default since LocalStack 3.0.
STEPFUNCTIONS_LAMBDA_ENDPOINT
default
Deprecated since 3.0.0 This is only supported for the legacy provider. URL to use as the Lambda service endpoint in Step Functions. By default this is the LocalStack Lambda endpoint. Use default to select the original AWS Lambda endpoint. Removed in new provider.
SQS
Variable
Example Values
Description
SQS_DELAY_PURGE_RETRY
0 (default)
Used to toggle PurgeQueueInProgress errors when making more than one PurgeQueue call within 60 seconds.
SQS_DELAY_RECENTLY_DELETED
0 (default)
Used to toggle QueueDeletedRecently errors when re-creating a queue within 60 seconds of deleting it.
SQS_ENDPOINT_STRATEGY
standard (default) | domain | path | off
Configures the format of Queue URLs (see SQS Queue URLs)
SQS_DISABLE_CLOUDWATCH_METRICS
0 (default)
Disables the CloudWatch Metrics for SQS when set to 1
SQS_CLOUDWATCH_METRICS_REPORT_INTERVAL
60 (default)
Configures the report interval (in seconds) for Approximate* metrics that are sent to CloudWatch periodically. Sending will be disabled if SQS_DISABLE_CLOUDWATCH_METRICS=1
Security
Warning
Please be aware that the following options may have severe security implications.
Variable
Example Values
Description
DISABLE_CORS_HEADERS
0 (default)
Whether to disable the returning of default CORS headers in API responses (disables access from https://app.localstack.cloud).
DISABLE_CORS_CHECKS
0 (default)
Whether to disable all CSRF (server-side) mitigations.
DISABLE_CUSTOM_CORS_S3
0 (default)
Whether to disable CORS override by S3.
DISABLE_CUSTOM_CORS_APIGATEWAY
0 (default)
Whether to disable CORS override by apigateway.
EXTRA_CORS_ALLOWED_ORIGINS
Comma-separated list of origins that are allowed to communicate with localstack.
EXTRA_CORS_ALLOWED_HEADERS
Comma-separated list of header names to be be added to Access-Control-Allow-Headers CORS header.
EXTRA_CORS_EXPOSE_HEADERS
Comma-separated list of header names to be be added to Access-Control-Expose-Headers CORS header.
ENABLE_CONFIG_UPDATES
0 (default)
Whether to enable dynamic configuration updates at runtime.
Emails
Please check with your SMTP email service provider for the following settings.
Variable
Example Values
Description
SMTP_HOST
localhost:1025
Hostname (and optionally the port) of the SMTP server. The port defaults to 25.
SMTP_USER
Login username for the SMTP server if required.
SMTP_PASS
Login password for the SMTP server if required.
SMTP_EMAIL
sender@example.com
Origin email address. Required for Cognito only.
Persistence
To learn more about these configuration options, see Persistence.
Variable
Valid options
Description
SNAPSHOT_SAVE_STRATEGY
ON_SHUTDOWN|ON_REQUEST|SCHEDULED|MANUAL
Strategy that governs when LocalStack should make state snapshots
SNAPSHOT_LOAD_STRATEGY
ON_STARTUP|ON_REQUEST|MANUAL
Strategy that governs when LocalStack restores state snapshots
SNAPSHOT_FLUSH_INTERVAL
15 (default)
The interval (in seconds) between persistence snapshots. It only applies to a SCHEDULED save strategy (see Persistence Mechanism)
AUTO_LOAD_POD
Comma-separated list of Cloud Pods to be automatically loaded at startup time.
Miscellaneous
Variable
Example Values
Description
SKIP_SSL_CERT_DOWNLOAD
Whether to skip downloading the SSL certificate for localhost.localstack.cloud
CUSTOM_SSL_CERT_PATH
/var/lib/localstack/custom/server.test.pem
Defines the absolute path to a custom SSL certificate for localhost.localstack.cloud
IGNORE_ES_DOWNLOAD_ERRORS
Whether to ignore errors (e.g., network/SSL) when downloading Elasticsearch plugins
OVERRIDE_IN_DOCKER
Overrides the check whether LocalStack is executed within a docker container. If set to true, LocalStack assumes it runs in a docker container. Should not be set unless necessary.
DISABLE_EVENTS
1
Whether to disable publishing LocalStack events
OUTBOUND_HTTP_PROXY
http://10.10.1.3
HTTP Proxy used for downloads of runtime dependencies and connections outside LocalStack itself
OUTBOUND_HTTPS_PROXY
https://10.10.1.3
HTTPS Proxy used for downloads of runtime dependencies and connections outside LocalStack itself
REQUESTS_CA_BUNDLE
/var/lib/localstack/lib/ca_bundle.pem
CA Bundle to be used to verify HTTPS requests made by LocalStack
Debugging
Variable
Example Values
Description
DEVELOP
Starts a debugpy server before starting LocalStack services
DEVELOP_PORT
Port number for debugpy server
WAIT_FOR_DEBUGGER
Forces LocalStack to wait for a debugger to start the services
DNS
To learn more about these configuration options, see DNS Server.
Variable
Example Values
Description
DNS_ADDRESS
0.0.0.0 (default)
Address the LocalStack should bind the DNS server on (port 53 tcp/udp). Value 0 to disable.
DNS_SERVER
Default upstream DNS or 8.8.8.8 (default)
Fallback DNS server for queries not handled by LocalStack.
DNS_RESOLVE_IP
127.0.0.1 (default)
IP address the DNS server should return as A record for queries handled by LocalStack. If customized, this value will be returned in preference to the DNS server response.
DNS_LOCAL_NAME_PATTERNS
.*(ecr|lambda).*.amazonaws.com (example)
Skiplist of hostnames that should NOT be resolved to the LocalStack container, as a comma-separated list of Python-flavored regex patterns.
Transparent Endpoint Injection
Variable
Example Values
Description
DISABLE_TRANSPARENT_ENDPOINT_INJECTION
0 (default in Pro) | 1
Whether to disable DNS resolution of AWS hostnames to the LocalStack container. Pro feature. (see Transparent Endpoint Injection)
LocalStack Pro
Variable
Example Values
Description
ACTIVATE_PRO
1 (default)
Whether pro should be activated or not. This is set to true by default if using the localstack/localstack-pro container image. If set to 1, LocalStack will fail to start if the license key activation did not work. If set to 0, an attempt is made to start LocalStack without pro features.
LOCALSTACK_AUTH_TOKEN
AUTH_TOKEN to activate LocalStack Pro.
LOG_LICENSE_ISSUES
1 (default)
Whether to log issues with the license activation to the console.
Legacy
These configurations have already been removed and won’t have any effect on newer versions of LocalStack.
+Please consult the migration guide for more information.
Variable
Example Values
Description
BUCKET_MARKER_LOCAL
hot-reload (default)
Magic S3 bucket name for Hot Reloading. The S3Key points to the source code on the local file system.
HOSTNAME_FROM_LAMBDA
localstack
Endpoint host under which APIs are accessible from Lambda containers (optional). This can be useful in docker-compose stacks to use the local container hostname if neither IP address nor container name of the main container are available (e.g., in CI). Often used in combination with LAMBDA_DOCKER_NETWORK.
LAMBDA_DISABLE_AWS_ENDPOINT_URL
0 (default) | 1
Whether to disable injecting the environment variable AWS_ENDPOINT_URL, which automatically configures supported AWS SDKs.
Additional flags passed to Docker run|create commands. Supports environment variables, ports, volume mounts, extra hosts, networks, DNS servers, labels, ulimits, user, platform, and privileged mode.
LAMBDA_DOCKER_NETWORK
bridge (Docker default)
Docker network driver for the Lambda and ECS containers. Needs to be set to the network the LocalStack container is connected to. Limitation: host mode currently not supported.
LAMBDA_DOWNLOAD_AWS_LAYERS
1 (default, pro)
Whether to download public Lambda layers from AWS through a LocalStack proxy when creating or updating functions.
LAMBDA_IGNORE_ARCHITECTURE
0 (default)
Whether to ignore the AWS architectures (x86_64 or arm64) configured for the lambda function. Set to 1 to run cross-platform compatible lambda functions natively (i.e., Docker selects architecture).
LAMBDA_K8S_IMAGE_PREFIX
amazon/aws-lambda- (default, pro)
Prefix for images that will be used to execute Lambda functions in Kubernetes.
LAMBDA_KEEPALIVE_MS
600000 (default 10min)
Time in milliseconds until lambda shuts down the execution environment after the last invocation has been processed. Set to 0 to immediately shut down the execution environment after an invocation.
LAMBDA_LIMITS_CONCURRENT_EXECUTIONS
1000 (default)
The maximum number of events that functions can process simultaneously in the current Region. See AWS service quotas
LAMBDA_LIMITS_CODE_SIZE_ZIPPED
52428800 (default)
The maximum zip file size in bytes for the CreateFunction operation. Raising this limit enables the creation of larger Lambda functions without the need to upload the code to an S3 deployment bucket.
LAMBDA_LIMITS_CREATE_FUNCTION_REQUEST_SIZE
70167211 (default)
The maximum HTTP request size in bytes for the CreateFunction operation. Raising this limit enables larger HTTP requests including zipped file size.
LAMBDA_REMOVE_CONTAINERS
1 (default)
Whether to remove any Lambda Docker containers.
LAMBDA_RUNTIME_ENVIRONMENT_TIMEOUT
10 (default)
How many seconds Lambda will wait for the runtime environment to start up.
Customize the Docker image of Lambda runtimes, either by: a) pattern with <runtime> placeholder, e.g. custom-repo/lambda-<runtime>:2022 b) json dict mapping the <runtime> to an image, e.g. {"python3.9": "custom-repo/lambda-py:thon3.9"}
LAMBDA_SYNCHRONOUS_CREATE
0 (default)
Set to 1 to create lambda functions synchronously (not recommended).
LAMBDA_TRUNCATE_STDOUT
2000 (default)
Allows increasing the default char limit for truncation of lambda log lines when printed in the console. This does not affect the logs processing in CloudWatch.
MWAA
Variable
Example Values
Description
MWAA_PIP_TRUSTED_HOSTS
pypi.org,files.pythonhosted.org
Comma-separated list of hosts for which SSL verification is not performed when installing Python dependencies for MWAA environment.
OpenSearch
Variable
Example Values
Description
OPENSEARCH_CUSTOM_BACKEND
http://opensearch:9200
URL to a custom OpenSearch backend cluster. If this is set to a valid URL, then LocalStack will not create OpenSearch cluster instances, but instead forward all domains to the given backend (see Custom Opensearch Backends).
OPENSEARCH_MULTI_CLUSTER
1| 0
When activated, LocalStack will spawn one OpenSearch cluster per domain. Otherwise all domains will share a single cluster instance. This is ignored if OPENSEARCH_CUSTOM_BACKEND is set.
OPENSEARCH_ENDPOINT_STRATEGY
path|domain|port
Governs how domain endpoints are created to access a cluster (see Opensearch Endpoints).
SKIP_INFRA_DOWNLOADS
1 | 0 (default)
Deprecated since 1.3.0 Whether to skip downloading additional infrastructure components (e.g., specific Elasticsearch versions)
RDS
Variable
Example Values
Description
RDS_CLUSTER_ENDPOINT_HOST_ONLY
1 (default) | 0
Whether the cluster endpoint returns the host only (which is AWS parity). If set to 0 it will return <host>:<port>.
RDS_PG_CUSTOM_VERSIONS
0 | 1 (default)
Whether to install and use custom Postgres versions for RDS (or alternatively, use default version 11).
RDS_MYSQL_DOCKER
1 (default) | 0
Whether to disable MySQL engines (and use MariaDB instead). MySQL engine for cluster/instances will start in a new docker container. If you have troubles running MySQL in docker, you can disable the feature.
MYSQL_IMAGE
mysql:8.0
Defines a specific MySQL image that should be used when spinning up the MySQL engine. Only available if RDS_MYSQL_DOCKER is enabled.
MSSQL_IMAGE
mcr.microsoft.com/mssql/server:2022-latest
Defines a specific image that should be used when spinning up a SQL server engine.
S3
Variable
Example Values
Description
S3_DIR
Deprecated since 3.0.0 This is only supported for the legacy_v2 provider. Configure a global parent directory that contains all buckets as sub-directories (S3_DIR=/path/to/root) or an individual directory that will get mounted as special bucket names (S3_DIR=/path/to/root/bucket1:bucket1). Only available for Localstack Pro.
S3_SKIP_SIGNATURE_VALIDATION
0 | 1 (default)
Used to toggle validation of S3 pre-signed URL request signature. Set to 0 to validate.
S3_SKIP_KMS_KEY_VALIDATION
0 | 1 (default)
Used to toggle validation of provided KMS key in S3 operations.
PROVIDER_OVERRIDE_S3
legacy_v2 | v3 (default)
The new LocalStack-native S3 provider (v3) is active by default since LocalStack 3.0.
StepFunctions
Variable
Example Values
Description
PROVIDER_OVERRIDE_STEPFUNCTIONS
legacy | v2 (default)
The new LocalStack-native StepFunctions provider (v2) is active by default since LocalStack 3.0.
STEPFUNCTIONS_LAMBDA_ENDPOINT
default
Deprecated since 3.0.0 This is only supported for the legacy provider. URL to use as the Lambda service endpoint in Step Functions. By default this is the LocalStack Lambda endpoint. Use default to select the original AWS Lambda endpoint. Removed in new provider.
SQS
Variable
Example Values
Description
SQS_DELAY_PURGE_RETRY
0 (default)
Used to toggle PurgeQueueInProgress errors when making more than one PurgeQueue call within 60 seconds.
SQS_DELAY_RECENTLY_DELETED
0 (default)
Used to toggle QueueDeletedRecently errors when re-creating a queue within 60 seconds of deleting it.
SQS_ENDPOINT_STRATEGY
standard (default) | domain | path | off
Configures the format of Queue URLs (see SQS Queue URLs)
SQS_DISABLE_CLOUDWATCH_METRICS
0 (default)
Disables the CloudWatch Metrics for SQS when set to 1
SQS_CLOUDWATCH_METRICS_REPORT_INTERVAL
60 (default)
Configures the report interval (in seconds) for Approximate* metrics that are sent to CloudWatch periodically. Sending will be disabled if SQS_DISABLE_CLOUDWATCH_METRICS=1
Security
Warning
Please be aware that the following options may have severe security implications.
Variable
Example Values
Description
DISABLE_CORS_HEADERS
0 (default)
Whether to disable the returning of default CORS headers in API responses (disables access from https://app.localstack.cloud).
DISABLE_CORS_CHECKS
0 (default)
Whether to disable all CSRF (server-side) mitigations.
DISABLE_CUSTOM_CORS_S3
0 (default)
Whether to disable CORS override by S3.
DISABLE_CUSTOM_CORS_APIGATEWAY
0 (default)
Whether to disable CORS override by apigateway.
EXTRA_CORS_ALLOWED_ORIGINS
Comma-separated list of origins that are allowed to communicate with localstack.
EXTRA_CORS_ALLOWED_HEADERS
Comma-separated list of header names to be be added to Access-Control-Allow-Headers CORS header.
EXTRA_CORS_EXPOSE_HEADERS
Comma-separated list of header names to be be added to Access-Control-Expose-Headers CORS header.
ENABLE_CONFIG_UPDATES
0 (default)
Whether to enable dynamic configuration updates at runtime.
Emails
Please check with your SMTP email service provider for the following settings.
Variable
Example Values
Description
SMTP_HOST
localhost:1025
Hostname (and optionally the port) of the SMTP server. The port defaults to 25.
SMTP_USER
Login username for the SMTP server if required.
SMTP_PASS
Login password for the SMTP server if required.
SMTP_EMAIL
sender@example.com
Origin email address. Required for Cognito only.
Persistence
To learn more about these configuration options, see Persistence.
Variable
Valid options
Description
SNAPSHOT_SAVE_STRATEGY
ON_SHUTDOWN|ON_REQUEST|SCHEDULED|MANUAL
Strategy that governs when LocalStack should make state snapshots
SNAPSHOT_LOAD_STRATEGY
ON_STARTUP|ON_REQUEST|MANUAL
Strategy that governs when LocalStack restores state snapshots
SNAPSHOT_FLUSH_INTERVAL
15 (default)
The interval (in seconds) between persistence snapshots. It only applies to a SCHEDULED save strategy (see Persistence Mechanism)
AUTO_LOAD_POD
Comma-separated list of Cloud Pods to be automatically loaded at startup time.
Miscellaneous
Variable
Example Values
Description
SKIP_SSL_CERT_DOWNLOAD
Whether to skip downloading the SSL certificate for localhost.localstack.cloud
CUSTOM_SSL_CERT_PATH
/var/lib/localstack/custom/server.test.pem
Defines the absolute path to a custom SSL certificate for localhost.localstack.cloud
IGNORE_ES_DOWNLOAD_ERRORS
Whether to ignore errors (e.g., network/SSL) when downloading Elasticsearch plugins
OVERRIDE_IN_DOCKER
Overrides the check whether LocalStack is executed within a docker container. If set to true, LocalStack assumes it runs in a docker container. Should not be set unless necessary.
DISABLE_EVENTS
1
Whether to disable publishing LocalStack events
OUTBOUND_HTTP_PROXY
http://10.10.1.3
HTTP Proxy used for downloads of runtime dependencies and connections outside LocalStack itself
OUTBOUND_HTTPS_PROXY
https://10.10.1.3
HTTPS Proxy used for downloads of runtime dependencies and connections outside LocalStack itself
REQUESTS_CA_BUNDLE
/var/lib/localstack/lib/ca_bundle.pem
CA Bundle to be used to verify HTTPS requests made by LocalStack
Debugging
Variable
Example Values
Description
DEVELOP
Starts a debugpy server before starting LocalStack services
DEVELOP_PORT
Port number for debugpy server
WAIT_FOR_DEBUGGER
Forces LocalStack to wait for a debugger to start the services
DNS
To learn more about these configuration options, see DNS Server.
Variable
Example Values
Description
DNS_ADDRESS
0.0.0.0 (default)
Address the LocalStack should bind the DNS server on (port 53 tcp/udp). Value 0 to disable.
DNS_SERVER
Default upstream DNS or 8.8.8.8 (default)
Fallback DNS server for queries not handled by LocalStack.
DNS_RESOLVE_IP
127.0.0.1 (default)
IP address the DNS server should return as A record for queries handled by LocalStack. If customized, this value will be returned in preference to the DNS server response.
DNS_LOCAL_NAME_PATTERNS
.*(ecr|lambda).*.amazonaws.com (example)
Skiplist of hostnames that should NOT be resolved to the LocalStack container, as a comma-separated list of Python-flavored regex patterns.
Transparent Endpoint Injection
Variable
Example Values
Description
DISABLE_TRANSPARENT_ENDPOINT_INJECTION
0 (default in Pro) | 1
Whether to disable DNS resolution of AWS hostnames to the LocalStack container. Pro feature. (see Transparent Endpoint Injection)
LocalStack Pro
Variable
Example Values
Description
ACTIVATE_PRO
1 (default)
Whether pro should be activated or not. This is set to true by default if using the localstack/localstack-pro container image. If set to 1, LocalStack will fail to start if the license key activation did not work. If set to 0, an attempt is made to start LocalStack without pro features.
LOCALSTACK_AUTH_TOKEN
AUTH_TOKEN to activate LocalStack Pro.
LOG_LICENSE_ISSUES
1 (default)
Whether to log issues with the license activation to the console.
Legacy
These configurations have already been removed and won’t have any effect on newer versions of LocalStack.
Please remove them from your configuration.
Variable
Removed in
Example Values
Description
<SERVICE>_BACKEND
3.0.0
http://localhost:7577
Custom endpoint URL to use for a specific service, where <SERVICE> is the uppercase service name.
<SERVICE>_PORT_EXTERNAL
3.0.0
4567
Port number to expose a specific service externally . SQS_PORT_EXTERNAL, e.g. , is used when returning queue URLs from the SQS service to the client.
ACTIVATE_NEW_POD_CLIENT
3.0.0
0|1 (default)
Whether to use the new Cloud Pods client leveraging LocalStack container’s APIs.
BIGDATA_MONO_CONTAINER
3.0.0
0|1 (default)
Whether to spin Big Data services inside the LocalStack main container. Glue jobs breaks when using BIGDATA_MONO_CONTAINER=0.
DEFAULT_REGION
3.0.0
us-east-1 (default)
AWS region to use when talking to the API (needs to be activated via USE_SINGLE_REGION=1). LocalStack now has full multi-region support.
EDGE_BIND_HOST
3.0.0
127.0.0.1 (default), 0.0.0.0 (docker)
Address the edge service binds to. Use GATEWAY_LISTEN instead.
EDGE_FORWARD_URL
3.0.0
http://10.0.10.5678
Optional target URL to forward all edge requests to (e.g., for distributed deployments)
EDGE_PORT
3.0.0
4566 (default)
Port number for the edge service, the main entry point for all API invocations.
EDGE_PORT_HTTP
3.0.0
4566 (default)
Port number for the edge service, the main entry point for all API invocations.
ES_CUSTOM_BACKEND
3.0.0
http://elasticsearch:9200
Use OPENSEARCH_CUSTOM_BACKEND instead. URL to a custom elasticsearch backend cluster. If this is set to a valid URL, then localstack will not create elasticsearch cluster instances, but instead forward all domains to the given backend (see Custom Elasticsearch Backends).
Use OPENSEARCH_MULTI_CLUSTER instead. When activated, LocalStack will spawn one Elasticsearch cluster per domain. Otherwise all domains will share a single cluster instance. This is ignored if ES_CUSTOM_BACKEND is set.
HOSTNAME_EXTERNAL
3.0.0
localhost (default)
Name of the host to expose the services externally. This host is used, e.g., when returning queue URLs from the SQS service to the client. Use LOCALSTACK_HOST instead.
A comma-delimited string of stream names, its corresponding shard count and an optional region to initialize during startup. If the region is not provided, the default region is used. Only works with the kinesis-mockKINESIS_PROVIDER.
KINESIS_PROVIDER
3.0.0
kinesis-mock (default) and kinesalite
KMS_PROVIDER
3.0.0
moto (default), local-kms
local-kms has been removed.
LAMBDA_CODE_EXTRACT_TIME
3.0.0
25 (default)
Time in seconds to wait at max while extracting Lambda code. By default, it is 25 seconds for limiting the execution time to avoid client/network timeout issues. Removed in new provider because function creation happens asynchronously.
LAMBDA_CONTAINER_REGISTRY
3.0.0
lambci/lambda (default)
An alternative docker registry from where to pull lambda execution containers. Replaced by LAMBDA_RUNTIME_IMAGE_MAPPING in new provider.
LAMBDA_EXECUTOR
3.0.0
Method to use for executing Lambda functions. For docker and docker-reuse, if LocalStack itself is started inside Docker, then the docker command needs to be available inside the container (usually requires to run the container in privileged mode). More information in Lambda Executor Modes. Removed in new provider. Mount the Docker socket or see migration guide.
docker (default)
Run each function invocation in a separate Docker container.
local (fallback)
Run Lambda functions in a temporary directory on the local machine.
docker-reuse
Create one Docker container per function and reuse it across invocations.
LAMBDA_FALLBACK_URL
3.0.0
Fallback URL to use when a non-existing Lambda is invoked. Either records invocations in DynamoDB (value dynamodb://<table_name>) or forwards invocations as a POST request (value http(s)://...). Removed in new provider.
LAMBDA_FORWARD_URL
3.0.0
URL used to forward all Lambda invocations (useful to run Lambdas via an external service). Removed in new provider.
LAMBDA_JAVA_OPTS
3.0.0
-Xmx512M
Allow passing custom JVM options to Java Lambdas executed in Docker. Use _debug_port_ placeholder to configure the debug port, e.g., -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=_debug_port_. Currently not supported in new provider but possible via custom entrypoint.
LAMBDA_REMOTE_DOCKER
3.0.0
determines whether Lambda code is copied or mounted into containers. Removed in new provider because zip file copying is used by default and hot reloading automatically configures mounting.
true (default)
your Lambda function definitions will be passed to the container by copying the zip file (potentially slower). It allows for remote execution, where the host and the client are not on the same machine.
false
your Lambda function definitions will be passed to the container by mounting a volume (potentially faster). This requires to have the Docker client and the Docker host on the same machine.
LAMBDA_STAY_OPEN_MODE
3.0.0
1 (default)
Usage of the stay-open mode of Lambda containers. Only applicable if LAMBDA_EXECUTOR=docker-reuse. Set to 0 if you want to use Hot Reloading. Removed in new provider because stay-open mode is the default behavior. LAMBDA_KEEPALIVE_MS can be used to configure how long containers should be kept running in-between invocations.
LAMBDA_XRAY_INIT
3.0.0
1 | 0 (default)
Whether to fully initialize XRay daemon for Lambda containers (may increase Lambda startup times). the X-Ray daemon is now always initialized.
LEGACY_EDGE_PROXY
3.0.0
1 | 0 (default)
Whether to use the legacy edge proxy or the newer Gateway/HandlerChain framework.
LOCALSTACK_HOSTNAME
3.0.0
http://${LOCALSTACK_HOSTNAME}:4566
Name of the host where LocalStack services are available. Use this hostname as endpoint in order to access the services from within your Lambda functions (e.g., to store an item to DynamoDB or S3 from a Lambda). This option is read-only. Use LOCALSTACK_HOST instead.
MOCK_UNIMPLEMENTED
3.0.0
1 | 0 (default)
Whether to return mocked success responses (instead of 501 errors) for currently unimplemented API methods
PERSIST_ALL
3.0.0
true (default)
Whether to persist all resources (including user code like Lambda functions), or only “light-weight” resources (e.g., SQS queues, or Cognito users). Can be set to false to reduce storage size of DATA_DIR folders or Cloud Pods.
SYNCHRONOUS_KINESIS_EVENTS
3.0.0
1 (default) | 0
Whether or not to handle Kinesis Lambda event sources as synchronous invocations.
USE_SINGLE_REGION
3.0.0
1 | 0 (default)
Whether to use the legacy single-region mode, defined via DEFAULT_REGION.
DATA_DIR
2.0.0
blank (disabled/default), /tmp/localstack/data
Local directory for saving persistent data. Use PERSISTENCE instead.
DISABLE_TERM_HANDLER
2.0.0
"" (default) | 1
Whether to disable signal passing to LocalStack when running in docker. Enabling this will prevent an orderly shutdown when running inside LS in docker. Setting this to anything else than an empty string will disable it.
HOST_TMP_FOLDER
2.0.0
/some/path
Temporary folder on the host that gets mounted as $TMPDIR/localstack into the LocalStack container. Required only for Lambda volume mounts when using LAMBDA_REMOTE_DOCKER=false.
INIT_SCRIPTS_PATH
2.0.0
/some/path
Before 1.0, this was used to configure the path to the initializing files with extensions .sh that were found in /docker-entrypoint-initaws.d. This has been replaced by the init-hook system.
LEGACY_DIRECTORIES
2.0.0
0 (default)
Use legacy method of managing internal filesystem layout. See Filesystem Layout.
LEGACY_INIT_DIR
2.0.0
1 | 0(default)
Used with INIT_SCRIPTS_PATH. This has been replaced by the init-hook system.
MULTI_ACCOUNTS
2.0.0
0 (default)
Enable multi-accounts (preview)
REQUIRE_PRO
2.0.0
0 (default)
Whether to require license activation to succeed to start LocalStack. If set to 0 (default) LocalStack will start as community version if the license cannot be activated.
SQS_PROVIDER
2.0.0
moto (default) and elasticmq
SYNCHRONOUS_API_GATEWAY_EVENTS
2.0.0
1 (default) | 0
Whether or not to handle API Gateway Lambda event sources as synchronous invocations.
SYNCHRONOUS_DYNAMODB_EVENTS
2.0.0
1 (default) | 0
Whether or not to handle DynamoDB Lambda event sources as synchronous invocations.
SYNCHRONOUS_SQS_EVENTS
2.0.0
1 | 0 (default)
Whether or not to handle SQS Lambda event sources as synchronous invocations.
SYNCHRONOUS_SNS_EVENTS
2.0.0
1 | 0 (default)
Whether or not to handle SNS Lambda event sources as synchronous invocations.
TMPDIR
2.0.0
/tmp (default)
Temporary folder on the host running the CLI and inside the LocalStack container .
USE_LIGHT_IMAGE
2.0.0
1 (default)
Whether to use the light-weight Docker image. Overwritten by IMAGE_NAME.
LEGACY_PERSISTENCE
1.0.0
true (default)
Whether to enable legacy persistence mechanism based on API calls record & replay. Only relevant for Community version, not relevant for advanced persistence mechanism in Pro.
PERSISTENCE_SINGLE_FILE
1.0.0
true (default)
Specify if persistence files should be combined (only relevant for legacy persistence in Community version, not relevant for advanced persistence in Pro version).
LocalStack supports configuration profiles which are stored in the ~/.localstack config directory.
A configuration profile is a set of environment variables stored in an .env file in the LocalStack config directory.
Here is an example of what configuration profiles might look like:
$ tree ~/.localstack
/home/username/.localstack
@@ -322,7 +322,7 @@
Let’s take an example to load the dev.env profile file if it exists:
If no profile is specified, the default.env profile will be loaded.
While explicitly specified, the environment variables will always overwrite the profile.
To display the config environment variables, you can use the following command:
$ python -m localstack.cli.main --profile=dev config show
Note
The CONFIG_PROFILE is a CLI feature and cannot be used with a Docker/Docker Compose setup.
You can look at alternative means of setting environment variables for your Docker Compose setups.
-For Docker setups, we recommend passing the environment variables directly to the docker run command.
\ No newline at end of file
diff --git a/sitemap.xml b/sitemap.xml
index 697bfab6d3..a44dcf7f8b 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1 +1 @@
-/user-guide/aws/feature-coverage/2023-09-18T08:38:19+02:00/references/network-troubleshooting/endpoint-url/2023-11-30T17:43:16+01:00/user-guide/ci/ci-analytics/2023-11-21T11:18:40+05:30/academy/localstack-101/course-overview/2023-08-23T14:33:03+05:00/user-guide/cloud-sandbox/ephemeral-instance/2023-11-21T11:18:40+05:30/user-guide/chaos-engineering/fis-experiments/2023-11-16T19:17:04+05:30/user-guide/security-testing/iam-enforcement/2023-11-24T12:45:50+05:30/user-guide/aws/2022-12-01T14:30:06+05:30/references/network-troubleshooting/2023-05-19T17:05:51+05:30/developer-hub/2023-03-30T17:05:01+02:00/overview/2023-11-16T15:40:18+01:00/tutorials/schema-evolution-glue-msk/2023-11-17T13:12:41+01:00/user-guide/cloud-sandbox/application-previews/2023-11-21T11:18:40+05:30/user-guide/integrations/aws-cli/2023-10-16T20:33:16+05:30/tutorials/lambda-ecr-container-images/2023-11-17T13:12:41+01:00/user-guide/security-testing/explainable-iam/2023-11-16T19:17:04+05:30/getting-started/2023-08-17T22:23:40+05:30/user-guide/integrations/2022-12-01T14:30:06+05:30/user-guide/chaos-engineering/outages-extension/2023-11-21T11:18:40+05:30/references/network-troubleshooting/transparent-endpoint-injection/2023-11-30T17:43:16+01:00/academy/localstack-101/what-is-localstack/2023-08-23T14:33:03+05:00/references/network-troubleshooting/created-resources/2023-11-09T11:28:48+01:00/tutorials/java-notification-app/2023-11-17T13:12:41+01:00/user-guide/ci/2023-11-21T11:18:40+05:30/contributing/contributing/2022-12-01T14:30:06+05:30/user-guide/extensions/2023-11-16T19:17:04+05:30/user-guide/cloud-pods/getting-started/2023-11-17T13:12:41+01:00/user-guide/extensions/getting-started/2023-11-16T19:17:04+05:30/user-guide/security-testing/iam-policy-stream/2023-11-16T19:17:04+05:30/user-guide/chaos-engineering/route53-failover/2023-11-21T11:18:40+05:30/tutorials/elb-load-balancing/2023-11-17T13:12:41+01:00/academy/localstack-101/why-localstack/2023-08-23T14:33:03+05:00/user-guide/ci/circle-ci/2023-11-16T14:25:42+01:00/user-guide/cloud-pods/pods-cli/2023-11-27T23:51:06+01:00/contributing/development-environment-setup/2023-09-26T13:38:02+02:00/academy/localstack-101/getting-started/2023-08-23T14:33:03+05:00/tutorials/s3-static-website-terraform/2023-08-17T22:23:40+05:30/user-guide/integrations/serverless-framework/2023-11-09T11:28:48+01:00/user-guide/chaos-engineering/subsequent-configs/2023-11-16T19:17:04+05:30/user-guide/integrations/testcontainers/2023-06-23T00:43:59-06:00/user-guide/integrations/spring-cloud-function/2023-03-27T16:55:20+02:00/user-guide/tools/lambda-tools/hot-reloading/2023-09-16T14:23:55+02:00/user-guide/integrations/architect/2022-12-01T14:30:06+05:30/user-guide/integrations/copilot/2022-12-01T14:30:06+05:30/user-guide/chaos-engineering/web-application-dashboard/2023-11-16T19:17:04+05:30/tutorials/reproducible-machine-learning-cloud-pods/2023-11-17T13:12:41+01:00/user-guide/integrations/crossplane/2023-09-06T08:59:00+02:00/user-guide/ci/drone-ci/2023-11-16T14:25:42+01:00/user-guide/ci/github-actions/2023-11-16T14:25:42+01:00/references/lambda-provider-v2/2023-05-08T14:00:03+00:00/references/coverage/2023-05-19T17:05:51+05:30/user-guide/tools/testing-tools/2022-12-01T14:30:06+05:30/user-guide/extensions/managing-extensions/2023-11-16T14:25:42+01:00/user-guide/tools/lambda-tools/debugging/2023-09-16T14:23:55+02:00/user-guide/cloud-pods/remotes/2023-11-16T19:17:04+05:30/user-guide/web-application/single-sign-on/azure-ad/2023-11-16T14:25:42+01:00/user-guide/integrations/terraform/2023-11-20T14:02:11+01:00/academy/localstack-101/web-app-resource-browser/2023-08-23T14:33:03+05:00/user-guide/tools/cockpit/2023-11-08T16:51:01+01:00/tutorials/ecs-ecr-container-app/2023-11-17T13:12:41+01:00/academy/localstack-101/full-project-demo/2023-08-23T14:33:03+05:00/academy/localstack-101/2023-08-23T14:33:03+05:00/contributing/concepts/2022-12-29T12:19:43+01:00/user-guide/ci/travis-ci/2023-11-16T14:25:42+01:00/user-guide/integrations/aws-sam/2023-11-09T11:28:48+01:00/academy/localstack-101/cloud-pods/2023-11-16T19:17:04+05:30/user-guide/ci/gitlab-ci/2023-11-16T14:25:42+01:00/contributing/integration-tests/2023-11-09T11:28:48+01:00/user-guide/tools/localsurf/2023-03-14T14:32:31+05:30/contributing/parity-testing/2023-02-03T15:18:39+05:30/user-guide/2023-11-09T13:00:00+05:30/user-guide/integrations/aws-cdk/2023-11-09T11:28:48+01:00/user-guide/ci/harness-ci/2023-11-16T14:25:42+01:00/user-guide/tools/localstack-desktop/2023-11-08T16:51:01+01:00/user-guide/tools/localstack-docker-extension/2023-01-13T18:45:43+05:30/user-guide/tools/lambda-tools/lambda-vscode-extension/2023-10-16T15:48:01+05:30/user-guide/web-application/accounts/2023-11-16T14:25:42+01:00/user-guide/cloud-pods/2023-11-17T14:35:17+05:30/references/configuration/2023-11-30T17:43:16+01:00/user-guide/extensions/developing-extensions/2023-11-16T14:25:42+01:00/getting-started/installation/2023-11-20T09:19:51+01:00/user-guide/tools/lambda-tools/2022-12-01T14:30:06+05:30/user-guide/cloud-pods/launchpad/2023-11-16T19:17:04+05:30/user-guide/integrations/pulumi/2023-11-20T13:59:11+01:00/contributing/terraform-tests/2022-12-01T14:30:06+05:30/user-guide/tools/transparent-endpoint-injection/2023-11-30T17:43:16+01:00/tutorials/2023-03-30T17:05:01+02:00/user-guide/integrations/cdk-for-terraform/2023-04-23T09:59:36+05:30/user-guide/chaos-engineering/2023-11-16T19:17:04+05:30/user-guide/tools/dns-server/2023-11-30T18:17:09+01:00/user-guide/security-testing/2023-11-16T19:17:04+05:30/user-guide/cloud-sandbox/2023-11-21T11:18:40+05:30/user-guide/integrations/kafka/2023-04-23T09:59:36+05:30/user-guide/integrations/chalice/2023-04-23T09:59:36+05:30/user-guide/integrations/gitpod/2023-04-23T09:59:36+05:30/user-guide/integrations/openshift/2023-11-06T11:30:05+05:30/user-guide/integrations/former2/2023-10-15T10:31:51+05:30/user-guide/extensions/official-extensions/2023-10-12T09:22:38+02:00/user-guide/integrations/cloud-custodian/2023-10-18T13:18:40+05:30/applications/2023-03-30T17:05:01+02:00/getting-started/auth-token/2023-11-21T11:18:40+05:30/user-guide/web-application/workspaces/2023-11-16T14:25:42+01:00/academy/2023-08-23T14:33:03+05:00/user-guide/web-application/users-licences/2023-11-18T18:51:57+01:00/getting-started/quickstart/2023-11-16T19:17:04+05:30/user-guide/ci/ci-keys/2023-11-21T11:18:40+05:30/getting-started/faq/2023-11-21T15:12:26+05:30/user-guide/tools/2022-12-01T14:30:06+05:30/references/arm64-support/2023-05-19T17:05:51+05:30/references/credentials/2023-11-03T14:33:27+05:30/references/cross-account-access/2023-11-03T14:33:27+05:30/references/custom-tls-certificates/2023-08-02T12:53:03+02:00/references/docker-images/2023-11-16T14:25:42+01:00/references/extensions/2023-10-12T09:22:38+02:00/references/external-ports/2023-11-09T09:43:14+00:00/references/filesystem/2023-05-19T17:05:51+05:30/getting-started/glossary/2023-11-16T19:17:04+05:30/references/init-hooks/2023-11-16T19:17:04+05:30/references/internal-endpoints/2023-05-19T17:05:51+05:30/user-guide/integrations/kubernetes/2023-11-06T15:53:48+05:30/user-guide/web-application/2023-11-16T14:25:42+01:00/references/logging/2023-05-19T17:05:51+05:30/references/multi-account-setups/2023-05-25T10:39:37+05:30/references/persistence-mechanism/2023-11-16T19:17:04+05:30/references/podman/2023-05-19T17:05:51+05:30/references/2023-02-03T15:18:39+05:30/references/usage-tracking/2023-11-16T14:25:42+01:00/contributing/2022-12-01T14:30:06+05:30/getting-started/help-and-support/2023-06-23T09:37:24+02:00/user-guide/cloud-pods/auto-load/2023-11-30T17:35:40+01:00/user-guide/cloud-pods/community/2023-11-16T19:17:04+05:30/user-guide/web-application/resource-browser/2023-11-16T14:25:42+01:00/user-guide/web-application/custom-local-endpoint/custom-local-endpoint/2023-11-16T14:25:42+01:00/user-guide/web-application/extensions-library/2023-11-16T14:25:42+01:00/user-guide/web-application/cloud-pods-browser/2023-11-17T14:35:17+05:30/user-guide/web-application/export-import-state/2023-11-16T14:25:42+01:00/user-guide/web-application/stack-insights/2023-11-16T14:25:42+01:00/references/api-key/2023-11-21T11:18:40+05:30/user-guide/web-application/single-sign-on/2023-11-16T14:25:42+01:00/categories/2023-11-30T18:17:09+01:00/tags/dotnet/2023-06-23T00:43:59-06:00/tags/go/2023-06-23T00:43:59-06:00/tags/java/2023-11-17T13:12:41+01:00/tags/jvm/2023-06-23T00:43:59-06:00/tags/kotlin/2023-06-23T00:43:59-06:00/categories/localstack-community/2023-09-16T14:23:55+02:00/categories/localstack-pro/2023-11-30T18:17:09+01:00/tags/2023-11-30T17:43:16+01:00/tags/test/2023-06-23T00:43:59-06:00/tags/testcontainers/2023-06-23T00:43:59-06:00/tags/serverless-framework/2023-11-17T13:12:41+01:00/tags/spring/2023-03-27T16:55:20+02:00/tags/spring-cloud/2023-03-27T16:55:20+02:00/tags/spring-cloud-function/2023-03-27T16:55:20+02:00/applications/temp/2023-03-30T17:05:01+02:00/references/network-troubleshooting/readme/2023-03-17T10:22:16+00:00/user-guide/integrations/sdks/dotnet/2023-09-11T10:43:08+03:00/tags/access-key-id/2023-11-03T14:33:27+05:30/tags/account-id/2023-11-03T14:33:27+05:30/tags/accounts/2023-11-16T14:25:42+01:00/tags/acm/2023-04-28T19:11:32+05:30/references/coverage/coverage_acm/2023-03-20T14:38:19+01:00/user-guide/aws/apigateway/2023-05-11T08:58:11+03:00/applications/amazon-rds-initialization-using-cdk-lambda-ecr-and-secrets-manager/2023-06-28T15:22:44+05:00/tags/amplify/2023-04-27T21:08:52+05:30/references/coverage/coverage_amplify/2023-03-20T14:38:19+01:00/tags/amplify-localstack/2023-04-27T21:08:52+05:30/tags/amplify-plugin/2023-04-27T21:08:52+05:30/tags/amplifylocal/2023-04-27T21:08:52+05:30/tags/apigateway/2023-05-11T08:58:11+03:00/references/coverage/coverage_apigateway/2023-03-20T14:38:19+01:00/tags/apigateway-localstack/2023-05-11T08:58:11+03:00/references/coverage/coverage_apigatewaymanagementapi/2023-03-20T14:38:19+01:00/tags/apigatewayv2/2023-05-11T08:58:11+03:00/references/coverage/coverage_apigatewayv2/2023-03-20T14:38:19+01:00/references/coverage/coverage_appconfig/2023-03-20T14:38:19+01:00/user-guide/aws/appconfig/2023-08-30T15:42:43+05:30/references/coverage/coverage_appconfigdata/2023-10-30T10:08:39+01:00/tags/apple/2023-05-19T17:05:51+05:30/user-guide/aws/application-autoscaling/2023-08-31T16:43:39+05:30/references/coverage/coverage_application-autoscaling/2023-03-20T14:38:19+01:00/tags/appsync/2023-06-28T15:22:44+05:00/references/coverage/coverage_appsync/2023-03-20T14:38:19+01:00/user-guide/aws/appsync/2023-09-04T23:45:02+05:30/applications/appsync-graphql-apis-for-dynamodb-and-rds-aurora-postgresql/2023-06-28T15:22:44+05:00/tags/architect/2022-12-01T14:30:06+05:30/references/coverage/coverage_athena/2023-03-20T14:38:19+01:00/user-guide/aws/athena/2023-09-05T13:17:30+05:30/references/coverage/coverage_autoscaling/2023-03-20T14:38:19+01:00/user-guide/aws/amplify/2023-04-27T21:08:52+05:30/user-guide/aws/acm/2023-04-28T19:11:32+05:30/tags/aws-java-sdk/2023-11-17T13:12:41+01:00/user-guide/aws/organization/2022-12-01T14:30:06+05:30/tags/aws-amplify/2023-04-27T21:08:52+05:30/tags/aws-certificate-manager/2023-04-28T19:11:32+05:30/references/coverage/coverage_backup/2023-03-20T14:38:19+01:00/user-guide/aws/backup/2023-08-30T00:43:03+05:30/tags/bash/2023-11-17T13:12:41+01:00/references/coverage/coverage_batch/2023-03-20T14:38:19+01:00/user-guide/aws/batch/2023-09-27T07:30:16+01:00/tags/big-data/2023-06-28T15:22:44+05:00/user-guide/integrations/sdks/cpp/2023-03-07T19:17:35+01:00/tags/cdk/2023-11-09T11:28:48+01:00/tags/cdk-for-terraform/2023-04-23T09:59:36+05:30/tags/cdktf/2023-04-23T09:59:36+05:30/references/coverage/coverage_ce/2023-03-20T14:38:19+01:00/tags/chalice/2023-04-23T09:59:36+05:30/tags/ci/2023-11-16T14:25:42+01:00/tags/cloud-pods/2023-11-17T13:12:41+01:00/references/coverage/coverage_cloudformation/2023-03-20T14:38:19+01:00/tags/cloudformation/2023-11-17T13:12:41+01:00/user-guide/aws/cloudformation/2023-08-30T19:47:20+05:30/references/coverage/coverage_cloudfront/2023-03-20T14:38:19+01:00/user-guide/aws/cloudfront/2023-11-30T17:43:16+01:00/references/coverage/coverage_cloudtrail/2023-03-20T14:38:19+01:00/user-guide/aws/cloudtrail/2023-08-29T21:22:38+05:30/references/coverage/coverage_cloudwatch/2023-03-20T14:38:19+01:00/user-guide/aws/cloudwatch/2023-08-10T09:44:16+05:30/references/coverage/coverage_codecommit/2023-03-20T14:38:19+01:00/user-guide/aws/codecommit/2023-09-05T17:51:59+05:30/user-guide/aws/cognito/2023-10-03T12:22:36-04:00/references/coverage/coverage_cognito-identity/2023-03-20T14:38:19+01:00/references/coverage/coverage_cognito-idp/2023-03-20T14:38:19+01:00/tags/compliance/2023-06-28T15:22:44+05:00/references/coverage/coverage_config/2023-03-20T14:38:19+01:00/user-guide/aws/config/2023-09-11T20:12:33+05:30/tags/container/2023-11-17T13:12:41+01:00/tags/container-image/2023-11-17T13:12:41+01:00/tags/continuous-delivery/2023-11-16T14:25:42+01:00/tags/continuous-integration/2023-11-16T14:25:42+01:00/user-guide/aws/cost-explorer/2023-08-31T12:11:26+05:30/tags/crossplane/2023-09-06T08:59:00+02:00/tags/data-analytics/2023-06-28T15:22:44+05:00/tags/databases/2023-06-28T15:22:44+05:00/tags/development-environment/2023-04-23T09:59:36+05:30/categories/dns/2023-11-30T18:17:09+01:00/references/coverage/coverage_docdb/2023-03-20T14:38:19+01:00/tags/docker/2023-11-17T13:12:41+01:00/tags/docker-desktop/2023-01-13T18:45:43+05:30/2021-10-08T11:40:02+02:00/user-guide/aws/docdb/2023-11-24T17:11:25+01:00/tags/dynamodb/2023-06-28T15:22:44+05:00/references/coverage/coverage_dynamodb/2023-03-20T14:38:19+01:00/user-guide/aws/dynamodb/2023-08-30T12:47:00+05:30/references/coverage/coverage_dynamodbstreams/2023-03-20T14:38:19+01:00/references/coverage/coverage_ec2/2023-03-20T14:38:19+01:00/references/coverage/coverage_ecr/2023-03-20T14:38:19+01:00/tags/ecr/2023-11-17T13:12:41+01:00/references/coverage/coverage_ecs/2023-03-20T14:38:19+01:00/tags/ecs/2023-11-17T13:12:41+01:00/references/coverage/coverage_efs/2023-03-20T14:38:19+01:00/references/coverage/coverage_eks/2023-03-20T14:38:19+01:00/user-guide/aws/elastic-beanstalk/2023-08-31T16:39:58+05:30/user-guide/aws/elastic-compute-cloud/2023-11-08T12:12:30+05:30/user-guide/aws/elastic-container-registry/2023-10-18T17:25:48+02:00/user-guide/aws/elastic-container-service/2023-03-27T16:55:20+02:00/user-guide/aws/elastic-file-system/2023-08-29T21:38:11+05:30/user-guide/aws/elastic-kubernetes-service/2023-11-09T11:28:48+01:00/tags/elastic-load-balancing/2023-11-17T13:12:41+01:00/user-guide/aws/elastic-load-balancing/2023-10-06T17:03:26+05:30/user-guide/aws/elastic-mapreduce/2023-06-21T20:27:39+05:30/references/coverage/coverage_elasticache/2023-03-20T14:38:19+01:00/user-guide/aws/elasticache/2023-11-09T13:09:34+05:30/references/coverage/coverage_elasticbeanstalk/2023-03-20T14:38:19+01:00/user-guide/aws/elasticsearch/2023-03-27T16:55:20+02:00/references/coverage/coverage_elb/2023-03-20T14:38:19+01:00/references/coverage/coverage_elbv2/2023-03-20T14:38:19+01:00/user-guide/aws/mediastore/2023-09-13T11:26:44+01:00/references/coverage/coverage_emr/2023-03-20T14:38:19+01:00/references/coverage/coverage_emr-serverless/2023-10-16T08:43:15+02:00/references/coverage/coverage_es/2023-03-20T14:38:19+01:00/applications/event-driven-architecture-with-amazon-sns-fifo-dynamodb-lambda-and-s3/2023-06-28T15:22:44+05:00/tags/event-driven-architecture/2023-07-27T12:31:23+02:00/user-guide/aws/eventbridge/2023-07-23T22:17:43-04:00/references/coverage/coverage_events/2023-03-20T14:38:19+01:00/tags/extensions/2023-11-16T14:25:42+01:00/tags/fargate/2023-11-17T13:12:41+01:00/user-guide/aws/fis/2023-08-30T13:05:02+05:30/references/coverage/coverage_firehose/2023-03-20T14:38:19+01:00/references/coverage/coverage_fis/2023-03-20T14:38:19+01:00/applications/full-stack-application-with-aws-lambda-dynamodb-s3-for-shipment-validation/2023-06-28T15:22:44+05:00/tags/gitpod/2023-04-23T09:59:36+05:30/references/coverage/coverage_glacier/2023-03-20T14:38:19+01:00/user-guide/aws/glacier/2023-09-13T09:09:02+02:00/references/coverage/coverage_glue/2023-03-20T14:38:19+01:00/user-guide/aws/glue/2023-10-17T14:43:13+02:00/tags/glue-schema-registry/2023-11-17T13:12:41+01:00/user-guide/integrations/sdks/go/2023-02-06T15:46:00+01:00/tags/graphql/2023-06-28T15:22:44+05:00/references/coverage/coverage_iam/2023-03-20T14:38:19+01:00/tags/ide-integration/2023-04-23T09:59:36+05:30/tags/identity/2023-06-28T15:22:44+05:00/user-guide/aws/iam/2023-11-16T19:17:04+05:30/tags/infrastructure-as-code/2023-11-20T13:59:11+01:00/tags/internal-endpoints/2023-05-19T17:05:51+05:30/references/coverage/coverage_iot/2023-03-20T14:38:19+01:00/user-guide/aws/iot/2023-11-09T11:38:10+00:00/references/coverage/coverage_iot-data/2023-03-20T14:38:19+01:00/references/coverage/coverage_iotanalytics/2023-03-20T14:38:19+01:00/references/coverage/coverage_iotwireless/2023-03-20T14:38:19+01:00/user-guide/integrations/sdks/java/2023-08-07T21:00:38+02:00/tags/javascript/2023-11-17T13:12:41+01:00/user-guide/integrations/sdks/javascript/2023-08-17T22:23:40+05:30/references/coverage/coverage_kafka/2023-03-20T14:38:19+01:00/tags/kafka/2023-11-17T13:12:41+01:00/user-guide/aws/kms/2023-10-30T14:18:21+05:30/references/coverage/coverage_kinesis/2023-03-20T14:38:19+01:00/user-guide/aws/kinesis/2023-09-04T23:27:09+05:30/user-guide/aws/kinesis-analytics/2023-08-30T13:04:38+05:30/user-guide/aws/kinesis-firehose/2023-08-30T00:36:11+05:30/references/coverage/coverage_kinesisanalytics/2023-03-20T14:38:19+01:00/references/coverage/coverage_kinesisanalyticsv2/2023-03-20T14:38:19+01:00/references/coverage/coverage_kms/2023-03-20T14:38:19+01:00/tags/kubernetes/2023-09-06T08:59:00+02:00/references/coverage/coverage_lakeformation/2023-03-20T14:38:19+01:00/references/coverage/coverage_lambda/2023-03-20T14:38:19+01:00/tags/lambda/2023-11-17T13:12:41+01:00/user-guide/aws/lambda/2023-11-20T17:28:05+01:00/tags/lambda-layers/2023-11-17T13:12:41+01:00/tags/lambda-trigger/2023-06-28T15:22:44+05:00/user-guide/integrations/sdks/2022-12-01T14:30:06+05:30/applications/loan-broker-application-with-aws-step-functions-dynamodb-lambda-sqs-and-sns/2023-06-28T15:22:44+05:00/categories/localstack/2023-11-03T14:33:27+05:30/categories/localstack-cockpit/2023-11-08T16:51:01+01:00/tags/localstack-enterprise/2023-11-17T14:35:17+05:30/tags/localstack-pro/2023-11-16T14:25:42+01:00/tags/localstack-team/2023-11-17T14:35:17+05:30/tags/localstack-endpoints/2023-05-19T17:05:51+05:30/tags/localsurf/2023-06-28T15:22:44+05:00/tags/logging/2023-05-19T17:05:51+05:30/references/coverage/coverage_logs/2023-03-20T14:38:19+01:00/user-guide/aws/logs/2022-12-01T14:30:06+05:30/tags/m1/2023-05-19T17:05:51+05:30/tags/machine-learning/2023-11-17T13:12:41+01:00/user-guide/aws/managed-streaming-for-kafka/2023-08-31T12:07:13+05:30/user-guide/aws/mwaa/2023-08-30T12:46:33+05:30/references/coverage/coverage_mediastore/2023-03-20T14:38:19+01:00/references/coverage/coverage_mediastore-data/2023-03-20T14:38:19+01:00/applications/messaging-processing-application-with-sqs-dynamodb-and-fargate/2023-06-28T15:22:44+05:00/tags/microservices/2023-06-28T15:22:44+05:00/applications/mnist-handwritten-digit-recognition-model-running-on-a-local-sagemaker-endpoint/2023-06-28T15:22:44+05:00/references/coverage/coverage_mq/2023-03-20T14:38:19+01:00/user-guide/aws/mq/2023-09-27T11:21:47+02:00/tags/msk/2023-11-17T13:12:41+01:00/tags/multi-account/2023-11-03T14:33:27+05:30/tags/multi-tenant/2023-11-03T14:33:27+05:30/references/coverage/coverage_mwaa/2023-03-20T14:38:19+01:00/tags/namespaces/2023-11-03T14:33:27+05:30/references/coverage/coverage_neptune/2023-03-20T14:38:19+01:00/user-guide/aws/neptune/2023-11-09T11:38:10+00:00/tags/networking/2023-11-30T17:43:16+01:00/tags/nginx/2023-11-17T13:12:41+01:00/tags/node.js/2023-11-17T13:12:41+01:00/applications/note-taking-application-using-aws-sdk-for-javascript/2023-06-28T15:22:44+05:00/references/coverage/coverage_opensearch/2023-03-20T14:38:19+01:00/user-guide/aws/opensearch/2023-11-14T19:46:01+05:30/references/coverage/coverage_organizations/2023-03-20T14:38:19+01:00/user-guide/integrations/sdks/php/2022-12-01T14:30:06+05:30/tags/podman/2023-05-19T17:05:51+05:30/tags/pulumi/2023-11-20T13:59:11+01:00/user-guide/integrations/sdks/python/2023-11-09T11:28:48+01:00/references/coverage/coverage_qldb/2023-03-20T14:38:19+01:00/references/coverage/coverage_qldb-session/2023-03-20T14:38:19+01:00/user-guide/aws/qldb/2023-10-20T10:10:29+02:00/applications/query-data-in-s3-bucket-with-amazon-athena-glue-catalog-cloudformation/2023-06-28T15:22:44+05:00/references/coverage/coverage_ram/2023-10-16T08:43:15+02:00/tags/raspberry-pi/2023-05-19T17:05:51+05:30/tags/rds/2023-06-28T15:22:44+05:00/references/coverage/coverage_rds/2023-03-20T14:38:19+01:00/references/coverage/coverage_rds-data/2023-03-20T14:38:19+01:00/tags/rds-proxy/2023-07-27T12:31:23+02:00/references/coverage/coverage_redshift/2023-03-20T14:38:19+01:00/user-guide/aws/redshift/2023-09-01T15:19:01+05:30/references/coverage/coverage_redshift-data/2023-03-20T14:38:19+01:00/user-guide/aws/rds/2023-11-03T08:56:19+01:00/tags/reproducible/2023-11-17T13:12:41+01:00/user-guide/aws/resourcegroups/2023-09-11T16:47:36+05:30/references/coverage/coverage_resource-groups/2023-03-20T14:38:19+01:00/references/coverage/coverage_resourcegroupstaggingapi/2023-03-20T14:38:19+01:00/references/coverage/coverage_route53/2023-03-20T14:38:19+01:00/user-guide/aws/route53/2023-12-05T11:41:46+00:00/references/coverage/coverage_route53resolver/2023-03-20T14:38:19+01:00/tags/ruby/2023-04-27T11:54:24+05:30/user-guide/integrations/sdks/ruby/2023-04-27T11:54:24+05:30/tags/rule-based-authentication/2023-06-28T15:22:44+05:00/references/coverage/coverage_s3/2023-03-20T14:38:19+01:00/tags/s3/2023-11-17T13:12:41+01:00/user-guide/aws/s3/2023-09-27T07:46:00+02:00/tags/s3-website/2023-08-17T22:23:40+05:30/references/coverage/coverage_s3control/2023-03-20T14:38:19+01:00/references/coverage/coverage_sagemaker/2023-03-20T14:38:19+01:00/user-guide/aws/sagemaker/2023-10-12T13:40:11+05:30/references/coverage/coverage_sagemaker-runtime/2023-03-20T14:38:19+01:00/tags/sam/2023-11-09T11:28:48+01:00/references/coverage/coverage_scheduler/2023-10-16T08:43:15+02:00/tags/schema-evolution/2023-11-17T13:12:41+01:00/tags/sdk/2023-11-09T11:28:48+01:00/applications/search-application-with-lambda-kinesis-firehose-elasticsearch-s3/2023-07-27T12:31:23+02:00/tags/secret-access-key/2023-11-03T14:33:27+05:30/user-guide/aws/secretsmanager/2023-09-11T19:23:39+05:30/references/coverage/coverage_secretsmanager/2023-03-20T14:38:19+01:00/tags/security/2023-06-28T15:22:44+05:00/user-guide/aws/security-token-service/2023-09-13T06:43:17+02:00/tags/self-managed/2023-04-23T09:59:36+05:30/tags/serverless/2023-07-27T12:31:23+02:00/user-guide/aws/serverlessrepo/2023-09-11T19:10:28+05:30/applications/serverless-container-based-apis-with-amazon-ecs-api-gateway/2023-06-28T15:22:44+05:00/applications/serverless-image-resizer-with-aws-lambda-s3-sns-and-ses/2023-06-28T15:22:44+05:00/applications/serverless-microservices-with-amazon-api-gateway-dynamodb-sqs-and-lambda/2023-06-28T15:22:44+05:00/applications/serverless-rds-proxy-with-api-gateway-lambda-and-aurora-rds/2023-07-27T12:31:23+02:00/applications/serverless-transcription-application-using-transcribe-s3-lambda-sqs-and-ses/2023-06-28T15:22:44+05:00/tags/serverless-containers/2023-06-28T15:22:44+05:00/tags/serverless-localstack-plugin/2023-11-17T13:12:41+01:00/references/coverage/coverage_serverlessrepo/2023-03-20T14:38:19+01:00/user-guide/aws/servicediscovery/2023-09-04T23:45:02+05:30/references/coverage/coverage_servicediscovery/2023-03-20T14:38:19+01:00/references/coverage/coverage_ses/2023-03-20T14:38:19+01:00/references/coverage/coverage_sesv2/2023-03-20T14:38:19+01:00/tags/silicon/2023-05-19T17:05:51+05:30/tags/simple-email-service/2023-11-17T13:12:41+01:00/user-guide/aws/ses/2023-09-27T11:21:28+05:30/tags/simple-notification-service/2023-11-17T13:12:41+01:00/user-guide/aws/sns/2023-08-24T22:36:50+05:30/tags/simple-queue-service/2023-11-17T13:12:41+01:00/user-guide/aws/sqs/2023-11-08T12:12:52+05:30/user-guide/aws/swf/2023-09-02T00:15:24+05:30/references/coverage/coverage_sns/2023-03-20T14:38:19+01:00/tags/spring-boot/2023-11-17T13:12:41+01:00/references/coverage/coverage_sqs/2023-03-20T14:38:19+01:00/tags/ssl/2023-08-02T12:53:03+02:00/references/coverage/coverage_ssm/2023-03-20T14:38:19+01:00/tags/sso/2023-11-16T14:25:42+01:00/references/coverage/coverage_sso-admin/2023-10-16T08:43:15+02:00/tags/stack-insights/2023-11-16T14:25:42+01:00/tags/static-website/2023-08-17T22:23:40+05:30/user-guide/aws/stepfunctions/2023-11-09T12:30:31+01:00/applications/step-up-authentication-using-amazon-cognito/2023-06-28T15:22:44+05:00/tags/step-up-auth/2023-06-28T15:22:44+05:00/references/coverage/coverage_stepfunctions/2023-03-20T14:38:19+01:00/references/coverage/coverage_sts/2023-03-20T14:38:19+01:00/references/coverage/coverage_support/2023-03-20T14:38:19+01:00/user-guide/aws/support/2023-08-30T15:39:42+05:30/references/coverage/coverage_swf/2023-03-20T14:38:19+01:00/user-guide/aws/systems-manager/2023-09-11T15:14:44+05:30/tags/terraform/2023-08-17T22:23:40+05:30/tags/testing/2023-11-16T14:25:42+01:00/tags/tflocal-cli/2023-08-17T22:23:40+05:30/user-guide/aws/timestream/2023-07-20T15:44:07+02:00/references/coverage/coverage_timestream-query/2023-03-20T14:38:19+01:00/references/coverage/coverage_timestream-write/2023-03-20T14:38:19+01:00/categories/tools/2023-11-30T18:17:09+01:00/references/coverage/coverage_transcribe/2023-03-20T14:38:19+01:00/user-guide/aws/transcribe/2023-09-27T11:21:47+02:00/references/coverage/coverage_transfer/2023-03-20T14:38:19+01:00/user-guide/aws/transfer/2023-09-11T18:22:02-05:00/tags/troubleshooting/2023-11-30T17:43:16+01:00/user-guide/aws/xray/2023-09-18T08:38:19+02:00/references/coverage/coverage_xray/2023-03-20T14:38:19+01:00
\ No newline at end of file
+/user-guide/aws/feature-coverage/2023-09-18T08:38:19+02:00/references/network-troubleshooting/endpoint-url/2023-11-30T17:43:16+01:00/user-guide/ci/ci-analytics/2023-11-21T11:18:40+05:30/academy/localstack-101/course-overview/2023-08-23T14:33:03+05:00/user-guide/cloud-sandbox/ephemeral-instance/2023-11-21T11:18:40+05:30/user-guide/chaos-engineering/fis-experiments/2023-11-16T19:17:04+05:30/user-guide/security-testing/iam-enforcement/2023-11-24T12:45:50+05:30/user-guide/aws/2022-12-01T14:30:06+05:30/references/network-troubleshooting/2023-05-19T17:05:51+05:30/developer-hub/2023-03-30T17:05:01+02:00/overview/2023-11-16T15:40:18+01:00/tutorials/schema-evolution-glue-msk/2023-11-17T13:12:41+01:00/user-guide/cloud-sandbox/application-previews/2023-11-21T11:18:40+05:30/user-guide/integrations/aws-cli/2023-10-16T20:33:16+05:30/tutorials/lambda-ecr-container-images/2023-11-17T13:12:41+01:00/user-guide/security-testing/explainable-iam/2023-11-16T19:17:04+05:30/getting-started/2023-08-17T22:23:40+05:30/user-guide/integrations/2022-12-01T14:30:06+05:30/user-guide/chaos-engineering/outages-extension/2023-11-21T11:18:40+05:30/references/network-troubleshooting/transparent-endpoint-injection/2023-11-30T17:43:16+01:00/academy/localstack-101/what-is-localstack/2023-08-23T14:33:03+05:00/references/network-troubleshooting/created-resources/2023-11-09T11:28:48+01:00/tutorials/java-notification-app/2023-11-17T13:12:41+01:00/user-guide/ci/2023-11-21T11:18:40+05:30/contributing/contributing/2022-12-01T14:30:06+05:30/user-guide/extensions/2023-11-16T19:17:04+05:30/user-guide/cloud-pods/getting-started/2023-11-17T13:12:41+01:00/user-guide/extensions/getting-started/2023-11-16T19:17:04+05:30/user-guide/security-testing/iam-policy-stream/2023-11-16T19:17:04+05:30/user-guide/chaos-engineering/route53-failover/2023-11-21T11:18:40+05:30/tutorials/elb-load-balancing/2023-11-17T13:12:41+01:00/academy/localstack-101/why-localstack/2023-08-23T14:33:03+05:00/user-guide/ci/circle-ci/2023-11-16T14:25:42+01:00/user-guide/cloud-pods/pods-cli/2023-11-27T23:51:06+01:00/contributing/development-environment-setup/2023-09-26T13:38:02+02:00/academy/localstack-101/getting-started/2023-08-23T14:33:03+05:00/tutorials/s3-static-website-terraform/2023-08-17T22:23:40+05:30/user-guide/integrations/serverless-framework/2023-11-09T11:28:48+01:00/user-guide/chaos-engineering/subsequent-configs/2023-11-16T19:17:04+05:30/user-guide/integrations/testcontainers/2023-06-23T00:43:59-06:00/user-guide/integrations/spring-cloud-function/2023-03-27T16:55:20+02:00/user-guide/tools/lambda-tools/hot-reloading/2023-09-16T14:23:55+02:00/user-guide/integrations/architect/2022-12-01T14:30:06+05:30/user-guide/integrations/copilot/2022-12-01T14:30:06+05:30/user-guide/chaos-engineering/web-application-dashboard/2023-11-16T19:17:04+05:30/tutorials/reproducible-machine-learning-cloud-pods/2023-11-17T13:12:41+01:00/user-guide/integrations/crossplane/2023-09-06T08:59:00+02:00/user-guide/ci/drone-ci/2023-11-16T14:25:42+01:00/user-guide/ci/github-actions/2023-11-16T14:25:42+01:00/references/lambda-provider-v2/2023-05-08T14:00:03+00:00/references/coverage/2023-05-19T17:05:51+05:30/user-guide/tools/testing-tools/2022-12-01T14:30:06+05:30/user-guide/extensions/managing-extensions/2023-11-16T14:25:42+01:00/user-guide/tools/lambda-tools/debugging/2023-09-16T14:23:55+02:00/user-guide/cloud-pods/remotes/2023-11-16T19:17:04+05:30/user-guide/web-application/single-sign-on/azure-ad/2023-11-16T14:25:42+01:00/user-guide/integrations/terraform/2023-11-20T14:02:11+01:00/academy/localstack-101/web-app-resource-browser/2023-08-23T14:33:03+05:00/user-guide/tools/cockpit/2023-11-08T16:51:01+01:00/tutorials/ecs-ecr-container-app/2023-11-17T13:12:41+01:00/academy/localstack-101/full-project-demo/2023-08-23T14:33:03+05:00/academy/localstack-101/2023-08-23T14:33:03+05:00/contributing/concepts/2022-12-29T12:19:43+01:00/user-guide/ci/travis-ci/2023-11-16T14:25:42+01:00/user-guide/integrations/aws-sam/2023-11-09T11:28:48+01:00/academy/localstack-101/cloud-pods/2023-11-16T19:17:04+05:30/user-guide/ci/gitlab-ci/2023-11-16T14:25:42+01:00/contributing/integration-tests/2023-11-09T11:28:48+01:00/user-guide/tools/localsurf/2023-03-14T14:32:31+05:30/contributing/parity-testing/2023-02-03T15:18:39+05:30/user-guide/2023-11-09T13:00:00+05:30/user-guide/integrations/aws-cdk/2023-11-09T11:28:48+01:00/user-guide/ci/harness-ci/2023-11-16T14:25:42+01:00/user-guide/tools/localstack-desktop/2023-11-08T16:51:01+01:00/user-guide/tools/localstack-docker-extension/2023-01-13T18:45:43+05:30/user-guide/tools/lambda-tools/lambda-vscode-extension/2023-10-16T15:48:01+05:30/user-guide/web-application/accounts/2023-11-16T14:25:42+01:00/user-guide/cloud-pods/2023-11-17T14:35:17+05:30/references/configuration/2023-12-05T19:07:53+01:00/user-guide/extensions/developing-extensions/2023-11-16T14:25:42+01:00/getting-started/installation/2023-11-20T09:19:51+01:00/user-guide/tools/lambda-tools/2022-12-01T14:30:06+05:30/user-guide/cloud-pods/launchpad/2023-11-16T19:17:04+05:30/user-guide/integrations/pulumi/2023-11-20T13:59:11+01:00/contributing/terraform-tests/2022-12-01T14:30:06+05:30/user-guide/tools/transparent-endpoint-injection/2023-12-05T19:07:53+01:00/tutorials/2023-03-30T17:05:01+02:00/user-guide/integrations/cdk-for-terraform/2023-04-23T09:59:36+05:30/user-guide/chaos-engineering/2023-11-16T19:17:04+05:30/user-guide/tools/dns-server/2023-11-30T18:17:09+01:00/user-guide/security-testing/2023-11-16T19:17:04+05:30/user-guide/cloud-sandbox/2023-11-21T11:18:40+05:30/user-guide/integrations/kafka/2023-04-23T09:59:36+05:30/user-guide/integrations/chalice/2023-04-23T09:59:36+05:30/user-guide/integrations/gitpod/2023-04-23T09:59:36+05:30/user-guide/integrations/openshift/2023-11-06T11:30:05+05:30/user-guide/integrations/former2/2023-10-15T10:31:51+05:30/user-guide/extensions/official-extensions/2023-10-12T09:22:38+02:00/user-guide/integrations/cloud-custodian/2023-10-18T13:18:40+05:30/applications/2023-03-30T17:05:01+02:00/getting-started/auth-token/2023-11-21T11:18:40+05:30/user-guide/web-application/workspaces/2023-11-16T14:25:42+01:00/academy/2023-08-23T14:33:03+05:00/user-guide/web-application/users-licences/2023-11-18T18:51:57+01:00/getting-started/quickstart/2023-11-16T19:17:04+05:30/user-guide/ci/ci-keys/2023-11-21T11:18:40+05:30/getting-started/faq/2023-11-21T15:12:26+05:30/user-guide/tools/2022-12-01T14:30:06+05:30/references/arm64-support/2023-05-19T17:05:51+05:30/references/credentials/2023-11-03T14:33:27+05:30/references/cross-account-access/2023-11-03T14:33:27+05:30/references/custom-tls-certificates/2023-08-02T12:53:03+02:00/references/docker-images/2023-11-16T14:25:42+01:00/references/extensions/2023-10-12T09:22:38+02:00/references/external-ports/2023-11-09T09:43:14+00:00/references/filesystem/2023-05-19T17:05:51+05:30/getting-started/glossary/2023-11-16T19:17:04+05:30/references/init-hooks/2023-11-16T19:17:04+05:30/references/internal-endpoints/2023-05-19T17:05:51+05:30/user-guide/integrations/kubernetes/2023-11-06T15:53:48+05:30/user-guide/web-application/2023-11-16T14:25:42+01:00/references/logging/2023-05-19T17:05:51+05:30/references/multi-account-setups/2023-05-25T10:39:37+05:30/references/persistence-mechanism/2023-11-16T19:17:04+05:30/references/podman/2023-05-19T17:05:51+05:30/references/2023-02-03T15:18:39+05:30/references/usage-tracking/2023-11-16T14:25:42+01:00/contributing/2022-12-01T14:30:06+05:30/getting-started/help-and-support/2023-06-23T09:37:24+02:00/user-guide/cloud-pods/auto-load/2023-11-30T17:35:40+01:00/user-guide/cloud-pods/community/2023-11-16T19:17:04+05:30/user-guide/web-application/resource-browser/2023-11-16T14:25:42+01:00/user-guide/web-application/custom-local-endpoint/custom-local-endpoint/2023-11-16T14:25:42+01:00/user-guide/web-application/extensions-library/2023-11-16T14:25:42+01:00/user-guide/web-application/cloud-pods-browser/2023-11-17T14:35:17+05:30/user-guide/web-application/export-import-state/2023-11-16T14:25:42+01:00/user-guide/web-application/stack-insights/2023-11-16T14:25:42+01:00/references/api-key/2023-11-21T11:18:40+05:30/user-guide/web-application/single-sign-on/2023-11-16T14:25:42+01:00/categories/2023-11-30T18:17:09+01:00/tags/dotnet/2023-06-23T00:43:59-06:00/tags/go/2023-06-23T00:43:59-06:00/tags/java/2023-11-17T13:12:41+01:00/tags/jvm/2023-06-23T00:43:59-06:00/tags/kotlin/2023-06-23T00:43:59-06:00/categories/localstack-community/2023-09-16T14:23:55+02:00/categories/localstack-pro/2023-11-30T18:17:09+01:00/tags/2023-11-30T17:43:16+01:00/tags/test/2023-06-23T00:43:59-06:00/tags/testcontainers/2023-06-23T00:43:59-06:00/tags/serverless-framework/2023-11-17T13:12:41+01:00/tags/spring/2023-03-27T16:55:20+02:00/tags/spring-cloud/2023-03-27T16:55:20+02:00/tags/spring-cloud-function/2023-03-27T16:55:20+02:00/applications/temp/2023-03-30T17:05:01+02:00/references/network-troubleshooting/readme/2023-03-17T10:22:16+00:00/user-guide/integrations/sdks/dotnet/2023-09-11T10:43:08+03:00/tags/access-key-id/2023-11-03T14:33:27+05:30/tags/account-id/2023-11-03T14:33:27+05:30/tags/accounts/2023-11-16T14:25:42+01:00/tags/acm/2023-04-28T19:11:32+05:30/references/coverage/coverage_acm/2023-03-20T14:38:19+01:00/user-guide/aws/apigateway/2023-05-11T08:58:11+03:00/applications/amazon-rds-initialization-using-cdk-lambda-ecr-and-secrets-manager/2023-06-28T15:22:44+05:00/tags/amplify/2023-04-27T21:08:52+05:30/references/coverage/coverage_amplify/2023-03-20T14:38:19+01:00/tags/amplify-localstack/2023-04-27T21:08:52+05:30/tags/amplify-plugin/2023-04-27T21:08:52+05:30/tags/amplifylocal/2023-04-27T21:08:52+05:30/tags/apigateway/2023-05-11T08:58:11+03:00/references/coverage/coverage_apigateway/2023-03-20T14:38:19+01:00/tags/apigateway-localstack/2023-05-11T08:58:11+03:00/references/coverage/coverage_apigatewaymanagementapi/2023-03-20T14:38:19+01:00/tags/apigatewayv2/2023-05-11T08:58:11+03:00/references/coverage/coverage_apigatewayv2/2023-03-20T14:38:19+01:00/references/coverage/coverage_appconfig/2023-03-20T14:38:19+01:00/user-guide/aws/appconfig/2023-08-30T15:42:43+05:30/references/coverage/coverage_appconfigdata/2023-10-30T10:08:39+01:00/tags/apple/2023-05-19T17:05:51+05:30/user-guide/aws/application-autoscaling/2023-08-31T16:43:39+05:30/references/coverage/coverage_application-autoscaling/2023-03-20T14:38:19+01:00/tags/appsync/2023-06-28T15:22:44+05:00/references/coverage/coverage_appsync/2023-03-20T14:38:19+01:00/user-guide/aws/appsync/2023-09-04T23:45:02+05:30/applications/appsync-graphql-apis-for-dynamodb-and-rds-aurora-postgresql/2023-06-28T15:22:44+05:00/tags/architect/2022-12-01T14:30:06+05:30/references/coverage/coverage_athena/2023-03-20T14:38:19+01:00/user-guide/aws/athena/2023-09-05T13:17:30+05:30/references/coverage/coverage_autoscaling/2023-03-20T14:38:19+01:00/user-guide/aws/amplify/2023-04-27T21:08:52+05:30/user-guide/aws/acm/2023-04-28T19:11:32+05:30/tags/aws-java-sdk/2023-11-17T13:12:41+01:00/user-guide/aws/organization/2022-12-01T14:30:06+05:30/tags/aws-amplify/2023-04-27T21:08:52+05:30/tags/aws-certificate-manager/2023-04-28T19:11:32+05:30/references/coverage/coverage_backup/2023-03-20T14:38:19+01:00/user-guide/aws/backup/2023-08-30T00:43:03+05:30/tags/bash/2023-11-17T13:12:41+01:00/references/coverage/coverage_batch/2023-03-20T14:38:19+01:00/user-guide/aws/batch/2023-09-27T07:30:16+01:00/tags/big-data/2023-06-28T15:22:44+05:00/user-guide/integrations/sdks/cpp/2023-03-07T19:17:35+01:00/tags/cdk/2023-11-09T11:28:48+01:00/tags/cdk-for-terraform/2023-04-23T09:59:36+05:30/tags/cdktf/2023-04-23T09:59:36+05:30/references/coverage/coverage_ce/2023-03-20T14:38:19+01:00/tags/chalice/2023-04-23T09:59:36+05:30/tags/ci/2023-11-16T14:25:42+01:00/tags/cloud-pods/2023-11-17T13:12:41+01:00/references/coverage/coverage_cloudformation/2023-03-20T14:38:19+01:00/tags/cloudformation/2023-11-17T13:12:41+01:00/user-guide/aws/cloudformation/2023-08-30T19:47:20+05:30/references/coverage/coverage_cloudfront/2023-03-20T14:38:19+01:00/user-guide/aws/cloudfront/2023-11-30T17:43:16+01:00/references/coverage/coverage_cloudtrail/2023-03-20T14:38:19+01:00/user-guide/aws/cloudtrail/2023-08-29T21:22:38+05:30/references/coverage/coverage_cloudwatch/2023-03-20T14:38:19+01:00/user-guide/aws/cloudwatch/2023-08-10T09:44:16+05:30/references/coverage/coverage_codecommit/2023-03-20T14:38:19+01:00/user-guide/aws/codecommit/2023-09-05T17:51:59+05:30/user-guide/aws/cognito/2023-10-03T12:22:36-04:00/references/coverage/coverage_cognito-identity/2023-03-20T14:38:19+01:00/references/coverage/coverage_cognito-idp/2023-03-20T14:38:19+01:00/tags/compliance/2023-06-28T15:22:44+05:00/references/coverage/coverage_config/2023-03-20T14:38:19+01:00/user-guide/aws/config/2023-09-11T20:12:33+05:30/tags/container/2023-11-17T13:12:41+01:00/tags/container-image/2023-11-17T13:12:41+01:00/tags/continuous-delivery/2023-11-16T14:25:42+01:00/tags/continuous-integration/2023-11-16T14:25:42+01:00/user-guide/aws/cost-explorer/2023-08-31T12:11:26+05:30/tags/crossplane/2023-09-06T08:59:00+02:00/tags/data-analytics/2023-06-28T15:22:44+05:00/tags/databases/2023-06-28T15:22:44+05:00/tags/development-environment/2023-04-23T09:59:36+05:30/categories/dns/2023-11-30T18:17:09+01:00/references/coverage/coverage_docdb/2023-03-20T14:38:19+01:00/tags/docker/2023-11-17T13:12:41+01:00/tags/docker-desktop/2023-01-13T18:45:43+05:30/2021-10-08T11:40:02+02:00/user-guide/aws/docdb/2023-11-24T17:11:25+01:00/tags/dynamodb/2023-06-28T15:22:44+05:00/references/coverage/coverage_dynamodb/2023-03-20T14:38:19+01:00/user-guide/aws/dynamodb/2023-08-30T12:47:00+05:30/references/coverage/coverage_dynamodbstreams/2023-03-20T14:38:19+01:00/references/coverage/coverage_ec2/2023-03-20T14:38:19+01:00/references/coverage/coverage_ecr/2023-03-20T14:38:19+01:00/tags/ecr/2023-11-17T13:12:41+01:00/references/coverage/coverage_ecs/2023-03-20T14:38:19+01:00/tags/ecs/2023-11-17T13:12:41+01:00/references/coverage/coverage_efs/2023-03-20T14:38:19+01:00/references/coverage/coverage_eks/2023-03-20T14:38:19+01:00/user-guide/aws/elastic-beanstalk/2023-08-31T16:39:58+05:30/user-guide/aws/elastic-compute-cloud/2023-11-08T12:12:30+05:30/user-guide/aws/elastic-container-registry/2023-10-18T17:25:48+02:00/user-guide/aws/elastic-container-service/2023-03-27T16:55:20+02:00/user-guide/aws/elastic-file-system/2023-08-29T21:38:11+05:30/user-guide/aws/elastic-kubernetes-service/2023-11-09T11:28:48+01:00/tags/elastic-load-balancing/2023-11-17T13:12:41+01:00/user-guide/aws/elastic-load-balancing/2023-10-06T17:03:26+05:30/user-guide/aws/elastic-mapreduce/2023-06-21T20:27:39+05:30/references/coverage/coverage_elasticache/2023-03-20T14:38:19+01:00/user-guide/aws/elasticache/2023-11-09T13:09:34+05:30/references/coverage/coverage_elasticbeanstalk/2023-03-20T14:38:19+01:00/user-guide/aws/elasticsearch/2023-03-27T16:55:20+02:00/references/coverage/coverage_elb/2023-03-20T14:38:19+01:00/references/coverage/coverage_elbv2/2023-03-20T14:38:19+01:00/user-guide/aws/mediastore/2023-09-13T11:26:44+01:00/references/coverage/coverage_emr/2023-03-20T14:38:19+01:00/references/coverage/coverage_emr-serverless/2023-10-16T08:43:15+02:00/references/coverage/coverage_es/2023-03-20T14:38:19+01:00/applications/event-driven-architecture-with-amazon-sns-fifo-dynamodb-lambda-and-s3/2023-06-28T15:22:44+05:00/tags/event-driven-architecture/2023-07-27T12:31:23+02:00/user-guide/aws/eventbridge/2023-07-23T22:17:43-04:00/references/coverage/coverage_events/2023-03-20T14:38:19+01:00/tags/extensions/2023-11-16T14:25:42+01:00/tags/fargate/2023-11-17T13:12:41+01:00/user-guide/aws/fis/2023-08-30T13:05:02+05:30/references/coverage/coverage_firehose/2023-03-20T14:38:19+01:00/references/coverage/coverage_fis/2023-03-20T14:38:19+01:00/applications/full-stack-application-with-aws-lambda-dynamodb-s3-for-shipment-validation/2023-06-28T15:22:44+05:00/tags/gitpod/2023-04-23T09:59:36+05:30/references/coverage/coverage_glacier/2023-03-20T14:38:19+01:00/user-guide/aws/glacier/2023-09-13T09:09:02+02:00/references/coverage/coverage_glue/2023-03-20T14:38:19+01:00/user-guide/aws/glue/2023-10-17T14:43:13+02:00/tags/glue-schema-registry/2023-11-17T13:12:41+01:00/user-guide/integrations/sdks/go/2023-02-06T15:46:00+01:00/tags/graphql/2023-06-28T15:22:44+05:00/references/coverage/coverage_iam/2023-03-20T14:38:19+01:00/tags/ide-integration/2023-04-23T09:59:36+05:30/tags/identity/2023-06-28T15:22:44+05:00/user-guide/aws/iam/2023-11-16T19:17:04+05:30/tags/infrastructure-as-code/2023-11-20T13:59:11+01:00/tags/internal-endpoints/2023-05-19T17:05:51+05:30/references/coverage/coverage_iot/2023-03-20T14:38:19+01:00/user-guide/aws/iot/2023-11-09T11:38:10+00:00/references/coverage/coverage_iot-data/2023-03-20T14:38:19+01:00/references/coverage/coverage_iotanalytics/2023-03-20T14:38:19+01:00/references/coverage/coverage_iotwireless/2023-03-20T14:38:19+01:00/user-guide/integrations/sdks/java/2023-08-07T21:00:38+02:00/tags/javascript/2023-11-17T13:12:41+01:00/user-guide/integrations/sdks/javascript/2023-08-17T22:23:40+05:30/references/coverage/coverage_kafka/2023-03-20T14:38:19+01:00/tags/kafka/2023-11-17T13:12:41+01:00/user-guide/aws/kms/2023-10-30T14:18:21+05:30/references/coverage/coverage_kinesis/2023-03-20T14:38:19+01:00/user-guide/aws/kinesis/2023-09-04T23:27:09+05:30/user-guide/aws/kinesis-analytics/2023-08-30T13:04:38+05:30/user-guide/aws/kinesis-firehose/2023-08-30T00:36:11+05:30/references/coverage/coverage_kinesisanalytics/2023-03-20T14:38:19+01:00/references/coverage/coverage_kinesisanalyticsv2/2023-03-20T14:38:19+01:00/references/coverage/coverage_kms/2023-03-20T14:38:19+01:00/tags/kubernetes/2023-09-06T08:59:00+02:00/references/coverage/coverage_lakeformation/2023-03-20T14:38:19+01:00/references/coverage/coverage_lambda/2023-03-20T14:38:19+01:00/tags/lambda/2023-11-17T13:12:41+01:00/user-guide/aws/lambda/2023-11-20T17:28:05+01:00/tags/lambda-layers/2023-11-17T13:12:41+01:00/tags/lambda-trigger/2023-06-28T15:22:44+05:00/user-guide/integrations/sdks/2022-12-01T14:30:06+05:30/applications/loan-broker-application-with-aws-step-functions-dynamodb-lambda-sqs-and-sns/2023-06-28T15:22:44+05:00/categories/localstack/2023-11-03T14:33:27+05:30/categories/localstack-cockpit/2023-11-08T16:51:01+01:00/tags/localstack-enterprise/2023-11-17T14:35:17+05:30/tags/localstack-pro/2023-11-16T14:25:42+01:00/tags/localstack-team/2023-11-17T14:35:17+05:30/tags/localstack-endpoints/2023-05-19T17:05:51+05:30/tags/localsurf/2023-06-28T15:22:44+05:00/tags/logging/2023-05-19T17:05:51+05:30/references/coverage/coverage_logs/2023-03-20T14:38:19+01:00/user-guide/aws/logs/2022-12-01T14:30:06+05:30/tags/m1/2023-05-19T17:05:51+05:30/tags/machine-learning/2023-11-17T13:12:41+01:00/user-guide/aws/managed-streaming-for-kafka/2023-08-31T12:07:13+05:30/user-guide/aws/mwaa/2023-08-30T12:46:33+05:30/references/coverage/coverage_mediastore/2023-03-20T14:38:19+01:00/references/coverage/coverage_mediastore-data/2023-03-20T14:38:19+01:00/applications/messaging-processing-application-with-sqs-dynamodb-and-fargate/2023-06-28T15:22:44+05:00/tags/microservices/2023-06-28T15:22:44+05:00/applications/mnist-handwritten-digit-recognition-model-running-on-a-local-sagemaker-endpoint/2023-06-28T15:22:44+05:00/references/coverage/coverage_mq/2023-03-20T14:38:19+01:00/user-guide/aws/mq/2023-09-27T11:21:47+02:00/tags/msk/2023-11-17T13:12:41+01:00/tags/multi-account/2023-11-03T14:33:27+05:30/tags/multi-tenant/2023-11-03T14:33:27+05:30/references/coverage/coverage_mwaa/2023-03-20T14:38:19+01:00/tags/namespaces/2023-11-03T14:33:27+05:30/references/coverage/coverage_neptune/2023-03-20T14:38:19+01:00/user-guide/aws/neptune/2023-11-09T11:38:10+00:00/tags/networking/2023-11-30T17:43:16+01:00/tags/nginx/2023-11-17T13:12:41+01:00/tags/node.js/2023-11-17T13:12:41+01:00/applications/note-taking-application-using-aws-sdk-for-javascript/2023-06-28T15:22:44+05:00/references/coverage/coverage_opensearch/2023-03-20T14:38:19+01:00/user-guide/aws/opensearch/2023-11-14T19:46:01+05:30/references/coverage/coverage_organizations/2023-03-20T14:38:19+01:00/user-guide/integrations/sdks/php/2022-12-01T14:30:06+05:30/tags/podman/2023-05-19T17:05:51+05:30/tags/pulumi/2023-11-20T13:59:11+01:00/user-guide/integrations/sdks/python/2023-11-09T11:28:48+01:00/references/coverage/coverage_qldb/2023-03-20T14:38:19+01:00/references/coverage/coverage_qldb-session/2023-03-20T14:38:19+01:00/user-guide/aws/qldb/2023-10-20T10:10:29+02:00/applications/query-data-in-s3-bucket-with-amazon-athena-glue-catalog-cloudformation/2023-06-28T15:22:44+05:00/references/coverage/coverage_ram/2023-10-16T08:43:15+02:00/tags/raspberry-pi/2023-05-19T17:05:51+05:30/tags/rds/2023-06-28T15:22:44+05:00/references/coverage/coverage_rds/2023-03-20T14:38:19+01:00/references/coverage/coverage_rds-data/2023-03-20T14:38:19+01:00/tags/rds-proxy/2023-07-27T12:31:23+02:00/references/coverage/coverage_redshift/2023-03-20T14:38:19+01:00/user-guide/aws/redshift/2023-09-01T15:19:01+05:30/references/coverage/coverage_redshift-data/2023-03-20T14:38:19+01:00/user-guide/aws/rds/2023-11-03T08:56:19+01:00/tags/reproducible/2023-11-17T13:12:41+01:00/user-guide/aws/resourcegroups/2023-09-11T16:47:36+05:30/references/coverage/coverage_resource-groups/2023-03-20T14:38:19+01:00/references/coverage/coverage_resourcegroupstaggingapi/2023-03-20T14:38:19+01:00/references/coverage/coverage_route53/2023-03-20T14:38:19+01:00/user-guide/aws/route53/2023-12-05T11:41:46+00:00/references/coverage/coverage_route53resolver/2023-03-20T14:38:19+01:00/tags/ruby/2023-04-27T11:54:24+05:30/user-guide/integrations/sdks/ruby/2023-04-27T11:54:24+05:30/tags/rule-based-authentication/2023-06-28T15:22:44+05:00/references/coverage/coverage_s3/2023-03-20T14:38:19+01:00/tags/s3/2023-11-17T13:12:41+01:00/user-guide/aws/s3/2023-09-27T07:46:00+02:00/tags/s3-website/2023-08-17T22:23:40+05:30/references/coverage/coverage_s3control/2023-03-20T14:38:19+01:00/references/coverage/coverage_sagemaker/2023-03-20T14:38:19+01:00/user-guide/aws/sagemaker/2023-10-12T13:40:11+05:30/references/coverage/coverage_sagemaker-runtime/2023-03-20T14:38:19+01:00/tags/sam/2023-11-09T11:28:48+01:00/references/coverage/coverage_scheduler/2023-10-16T08:43:15+02:00/tags/schema-evolution/2023-11-17T13:12:41+01:00/tags/sdk/2023-11-09T11:28:48+01:00/applications/search-application-with-lambda-kinesis-firehose-elasticsearch-s3/2023-07-27T12:31:23+02:00/tags/secret-access-key/2023-11-03T14:33:27+05:30/user-guide/aws/secretsmanager/2023-09-11T19:23:39+05:30/references/coverage/coverage_secretsmanager/2023-03-20T14:38:19+01:00/tags/security/2023-06-28T15:22:44+05:00/user-guide/aws/security-token-service/2023-09-13T06:43:17+02:00/tags/self-managed/2023-04-23T09:59:36+05:30/tags/serverless/2023-07-27T12:31:23+02:00/user-guide/aws/serverlessrepo/2023-09-11T19:10:28+05:30/applications/serverless-container-based-apis-with-amazon-ecs-api-gateway/2023-06-28T15:22:44+05:00/applications/serverless-image-resizer-with-aws-lambda-s3-sns-and-ses/2023-06-28T15:22:44+05:00/applications/serverless-microservices-with-amazon-api-gateway-dynamodb-sqs-and-lambda/2023-06-28T15:22:44+05:00/applications/serverless-rds-proxy-with-api-gateway-lambda-and-aurora-rds/2023-07-27T12:31:23+02:00/applications/serverless-transcription-application-using-transcribe-s3-lambda-sqs-and-ses/2023-06-28T15:22:44+05:00/tags/serverless-containers/2023-06-28T15:22:44+05:00/tags/serverless-localstack-plugin/2023-11-17T13:12:41+01:00/references/coverage/coverage_serverlessrepo/2023-03-20T14:38:19+01:00/user-guide/aws/servicediscovery/2023-09-04T23:45:02+05:30/references/coverage/coverage_servicediscovery/2023-03-20T14:38:19+01:00/references/coverage/coverage_ses/2023-03-20T14:38:19+01:00/references/coverage/coverage_sesv2/2023-03-20T14:38:19+01:00/tags/silicon/2023-05-19T17:05:51+05:30/tags/simple-email-service/2023-11-17T13:12:41+01:00/user-guide/aws/ses/2023-09-27T11:21:28+05:30/tags/simple-notification-service/2023-11-17T13:12:41+01:00/user-guide/aws/sns/2023-08-24T22:36:50+05:30/tags/simple-queue-service/2023-11-17T13:12:41+01:00/user-guide/aws/sqs/2023-11-08T12:12:52+05:30/user-guide/aws/swf/2023-09-02T00:15:24+05:30/references/coverage/coverage_sns/2023-03-20T14:38:19+01:00/tags/spring-boot/2023-11-17T13:12:41+01:00/references/coverage/coverage_sqs/2023-03-20T14:38:19+01:00/tags/ssl/2023-08-02T12:53:03+02:00/references/coverage/coverage_ssm/2023-03-20T14:38:19+01:00/tags/sso/2023-11-16T14:25:42+01:00/references/coverage/coverage_sso-admin/2023-10-16T08:43:15+02:00/tags/stack-insights/2023-11-16T14:25:42+01:00/tags/static-website/2023-08-17T22:23:40+05:30/user-guide/aws/stepfunctions/2023-11-09T12:30:31+01:00/applications/step-up-authentication-using-amazon-cognito/2023-06-28T15:22:44+05:00/tags/step-up-auth/2023-06-28T15:22:44+05:00/references/coverage/coverage_stepfunctions/2023-03-20T14:38:19+01:00/references/coverage/coverage_sts/2023-03-20T14:38:19+01:00/references/coverage/coverage_support/2023-03-20T14:38:19+01:00/user-guide/aws/support/2023-08-30T15:39:42+05:30/references/coverage/coverage_swf/2023-03-20T14:38:19+01:00/user-guide/aws/systems-manager/2023-09-11T15:14:44+05:30/tags/terraform/2023-08-17T22:23:40+05:30/tags/testing/2023-11-16T14:25:42+01:00/tags/tflocal-cli/2023-08-17T22:23:40+05:30/user-guide/aws/timestream/2023-07-20T15:44:07+02:00/references/coverage/coverage_timestream-query/2023-03-20T14:38:19+01:00/references/coverage/coverage_timestream-write/2023-03-20T14:38:19+01:00/categories/tools/2023-11-30T18:17:09+01:00/references/coverage/coverage_transcribe/2023-03-20T14:38:19+01:00/user-guide/aws/transcribe/2023-09-27T11:21:47+02:00/references/coverage/coverage_transfer/2023-03-20T14:38:19+01:00/user-guide/aws/transfer/2023-09-11T18:22:02-05:00/tags/troubleshooting/2023-11-30T17:43:16+01:00/user-guide/aws/xray/2023-09-18T08:38:19+02:00/references/coverage/coverage_xray/2023-03-20T14:38:19+01:00
\ No newline at end of file
diff --git a/user-guide/tools/transparent-endpoint-injection/index.html b/user-guide/tools/transparent-endpoint-injection/index.html
index 59703e45d1..0ea1959977 100644
--- a/user-guide/tools/transparent-endpoint-injection/index.html
+++ b/user-guide/tools/transparent-endpoint-injection/index.html
@@ -333,7 +333,7 @@
For example, the boto3 AWS SDK for Python provides a parameter verify=False to disable SSL verification.
Similar parameters are available for most other AWS SDKs.
For Node.js, you can set this environment variable in your application, to allow the AWS SDK to talk to the local APIs via SSL:
process.env.NODE_TLS_REJECT_UNAUTHORIZED="0"
If you are using the Java AWS SDK v2 in Lambda, you can opt in to automatically disable SSL validation using the configuration LAMBDA_DISABLE_JAVA_SDK_V2_CERTIFICATE_VALIDATION=1.
Warning
Disabling SSL validation may have undesired side effects and security implications.
-Make sure to use this only for local testing, and never in production.