Filter key name

Hello Doppler,

is there a way to filter a key name?

example I have a config with a key-value pairs of

TEST_1=value_1
TEST_2=value_2
TEST_3=value_3

I tried a command like this to show all that starts with TEST keyname but nothing shows.

doppler secrets -c conf --raw | grep ^TEST

but for specific the command is this

doppler secrets -c conf --raw | grep TEST

the output is

│ TEST_1 │ value_1 │ value_1 │ │

Hi @Dex,

Try this out:

doppler secrets download -p PROJECT -c CONFIG --no-file | grep TEST_

I think that’ll get you what you want!

Regards,
-Joel