ivica-k commented on issue #11057: URL: https://github.com/apache/airflow/issues/11057#issuecomment-702581087
Hey @TKorr it seems to me that your problem is AWS IAM related at this point. You have two roles, Assumer and Target (assumer assumes the target role). In this example, the Target role must have a Trust Relationship saying that the Assumer role is allowed to assume it. Here's an example from my IAM console  In it, I am allowing `airflow_task_role` (a role under which my Airflow worker is running) to assume another role which would grant certain permissions (S3 access in my case). The issue with the missing token and STS credentials (which PR #11227 is trying to solve) only showed itself after I was able to assume the role. In your case you can't even assume the role from Airflow. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
