Skip to content

Commit

Permalink
fix(ecsoperator): Try using execution role as task role
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc committed Mar 4, 2025
1 parent dc1f574 commit ee33eb5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def setup_operator(self) -> EcsRegisterTaskDefinitionOperator:
"memory": str(self.container_memory),
"requiresCompatibilities": ["FARGATE"],
"executionRoleArn": ECS_EXECUTION_ROLE_ARN,
"taskRoleArn": ECS_EXECUTION_ROLE_ARN,
"networkMode": "awsvpc",
"tags": [
{"key": "name", "value": self.name},
Expand Down

0 comments on commit ee33eb5

Please sign in to comment.