Having some issues using the EcsRunLauncher. This is the current error I'm getting when trying to launch a run:
botocore.errorfactory.ClientException: An error occurred (ClientException) when calling the RegisterTaskDefinition operation: The secret name must be unique and not shared with any new or existing environment variables set on the container, such as 'AWS_DEFAULT_REGION'.
File "/home/dagster/.local/lib/python3.10/site-packages/dagster/_daemon/run_coordinator/queued_run_coordinator_daemon.py", line 333, in _dequeue_run
instance.run_launcher.launch_run(LaunchRunContext(dagster_run=run, workspace=workspace))
File "/home/dagster/.local/lib/python3.10/site-packages/dagster_aws/ecs/launcher.py", line 370, in launch_run
run_task_kwargs = self._run_task_kwargs(run, image, container_context)
File "/home/dagster/.local/lib/python3.10/site-packages/dagster_aws/ecs/launcher.py", line 577, in _run_task_kwargs
backoff(
File "/home/dagster/.local/lib/python3.10/site-packages/dagster/_utils/backoff.py", line 70, in backoff
raise to_raise
File "/home/dagster/.local/lib/python3.10/site-packages/dagster/_utils/backoff.py", line 64, in backoff
return fn(*args, **kwargs)
File "/home/dagster/.local/lib/python3.10/site-packages/dagster_aws/ecs/launcher.py", line 631, in _reuse_or_register_task_definition
self.ecs.register_task_definition(**task_definition_dict)
File "/home/dagster/.local/lib/python3.10/site-packages/botocore/client.py", line 530, in _api_call
return self._make_api_call(operation_name, kwargs)
File "/home/dagster/.local/lib/python3.10/site-packages/botocore/client.py", line 960, in _make_api_call
raise error_class(parsed_response, operation_name)