emilie
03/28/2024, 7:20 AM${{ secrets.SNOWFLAKE_PASSWORD }}
to ${{secrets.SNOWFLAKE_PASSWORD}}
(trimming out the spaces), but I'm still getting the error. Any troubleshooting suggestions?Reuben (Matatika)
03/28/2024, 12:08 PM${{ secrets.TAP_SNOWFLAKE_PASSWORD }}
?Edgar Ramírez (Arch.dev)
04/01/2024, 6:06 PM${{secrets.SNOWFLAKE_PASSWORD}}
in your workflow yaml?emilie
04/11/2024, 6:39 AMpassword: $SNOWFLAKE_PASSWORD
and moving the env
config up higher in the workflow.yml
to say it like so:emilie
04/11/2024, 6:40 AMenv:
SNOWFLAKE_PASSWORD: ${{secrets.SNOWFLAKE_PASSWORD}}
emilie
04/11/2024, 6:41 AMReuben (Matatika)
04/11/2024, 10:05 AMpassword: $SNOWFLAKE_PASSWORD
mapping in your config, since Meltano will allow you to configure password
via TAP_SNOWFLAKE_PASSWORD
, without you having to do anything extra. Probably you just needed to add
env:
TAP_SNOWFLAKE_PASSWORD: ${{secrets.SNOWFLAKE_PASSWORD}}
without any change in your meltano.yml
(I assumed you were mapping the secret key SNOWFLAKE_PASSWORD
to an environment variable of the same name before).
tap-spotify
test
workflow does this: https://github.com/Matatika/tap-spotify/blob/d98485c6e1c2c1f3f0d4fd24b1c9a195a54bcc28/.github/workflows/test.yml#L16-L18