does `dagster-cloud workspace sync -w xyz.yaml` su...
# dagster-plus
c
does
dagster-cloud workspace sync -w xyz.yaml
support variable substitution in the YAML file?
I can do that with docker-compose, but it's probably not universal
b
at the moment we don't, but you could emulate something like it using
envsubst
, e.g.
envsubst < locations.yaml.tmpl > locations.yaml
before running
c
right, good idea!