Hi, we have setup Dagster on AWS using ECS. Now we...
# ask-community
m
Hi, we have setup Dagster on AWS using ECS. Now we want to use a S3 Bucket as IOManager. The documentation https://docs.dagster.io/deployment/guides/aws that we have to add a yaml block for resources: io_managers to our pipeline config. This is not very well documented, since I don't know which yaml file to put that config in. Do I have to add this block to the dagster.yaml or the workspace.yaml?
a
agree this is not as clear as it should be its referring to the
run_config
for the pipeline run. Alternatively you can use
configured
to bind the config to the resource directly if its no variable per run https://docs.dagster.io/concepts/configuration/configured#configured-api
m
Thanks, We already figured that out. 🙂