CircleCI-Public / aws-ecs-orb

An orb that simplifies deployment to Amazon's Elastic Container Service (ECS). Supports both EC2 and Fargate launch types.
https://circleci.com/orbs/registry/orb/circleci/aws-ecs
MIT License
51 stars 80 forks source link

run-task overrides fails to evaluate env arguments #146

Closed dsvensson closed 2 years ago

dsvensson commented 2 years ago

Orb version:

2.2.1

What happened:

Error parsing parameter '--overrides': Expected: '=', received: '$' for input:
$OVERRIDES
^

Expected behavior:

I expected that this would work:

      - run:
          name: "foo"
          command: echo "export OVERRIDES=\"test\"" >> $BASH_ENV
      - aws-ecs/run-task:
          overrides: "${OVERRIDES}"
          ...