Configure the ECS task bind address
This topic describes how to configure the bind address for your workloads to the loopback address.
Introduction
Binding workloads to the loopback address ensures that your application only receives traffic through the dataplane container running in the same task, which limits requests to the service mesh. The loopback address is also called localhost
, lo
, and 127.0.0.1
. If your application is listening on all interfaces, such as 0.0.0.0
, then other applications can bypass the proxy and call it directly.
Requirements
Consul service mesh must be deployed to ECS before you can bind a network address. For more information, refer to the following topics:
Change the listening address
Changing the listening address is specific to your language and framework, but binding the loopback address to a dynamic value, such as an environment variable, is a best practice:
The following examples demonstrate how to bind the loopback address to an environment variable in golang and Django (Python):