Will Milner
05/18/2020, 4:38 PMsecrets
argument in prefect docker storage object? I tried doing
flow.storage = Docker(....,secrets=["SECRET_NAME"])
But when I try running the flow It fails to start and I get this error message from apollo
{
"message": "Cannot query field \"secret_value\" on type \"Query\".",
"locations": [
{
"line": 2,
"column": 9
}
],
"extensions": {
"code": "GRAPHQL_VALIDATION_FAILED"
}
}
I want to avoid sending in my secret values as environment variables to my docker images so was hoping the secrets arg would solve this for meKyle Moon-Wright
05/18/2020, 4:55 PMWill Milner
05/18/2020, 5:52 PM