CircleCI-Public / aws-parameter-store-orb

MIT License
4 stars 8 forks source link

Filter is not working properly #18

Open willi-melo opened 3 years ago

willi-melo commented 3 years ago

Orb version

Orb version = 1.0.0

What happened

When I add a filter similar to the filter below I get an error

    steps:
      - aws-parameter-store/load:
          filter: "Key=Name,Values=/env/ms-name"

environment: line 15: /tmp/parameterstore//env/ms-name/some-env: No such file or directory

Expected behavior

I would like to separate the envs by environment and be able to filter correctly, but because of this "//" I'm not getting it. for now it only works with simple envs without contexts separated by "/".

And I haven't found ways to fix it. Apparently it's in the shell script that performs this operation.