Quantcast
Channel: User mbaird - Server Fault
Viewing all articles
Browse latest Browse all 7

Answer by mbaird for Is it impossible to access rds and elasticache redis in AWS fargate only by setting a role?

$
0
0

The permissions in the task role gives access to the AWS API, which would give your task the ability to do things like create new RDS or ElastiCache servers. Those IAM permissions do not give it access to connect to RDS or ElastiCache servers, and adding those permissions certainly don't do anything at the network level to open up ports in your database server's firewalls.

To connect to your RDS server you need to make a network connection with a database driver (PostgreSQL, MySQL, whatever RDBMS you selected) on that database server's network port. Similarly to connect to your ElastiCache server you have to use a Redis client to make a connection on the port Redis is listening on. Making those connections to your databases do not use the task IAM role at all, because they aren't doing anything with the AWS API, they are making direct database network connections.


Viewing all articles
Browse latest Browse all 7

Latest Images

Trending Articles





Latest Images