1

We want to host our software on AWS via Docker using ECS. However, our software must connect to an external service, and they limit our access based on IP address.

Is it possible to have fixed IP addresses for the EC2 instances in the ECS cluster?

Adrian Smith
  • 276
  • 4
  • 9

1 Answers1

1

You should be able to accomplish this by putting the instances in a private subnet and running their traffic through a NAT gateway.

ceejayoz
  • 32,469
  • 7
  • 81
  • 105