Replies: 1 comment 1 reply
-
Hi, that's a good question to be honest, I'm not sure on the top of my head whether:
So I would try this: do not define If it's That's interesting that no one brought this up yet. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an issue with Laravel
config:cache
and SQS queues. I used approach with storing secrets in the github and generating config cache in github actions, this approach looked ok since config:cache was recommended in docs for faster cold starts. However sinceSQS_QUEUE: ${construct:jobs.queueUrl}
is passed from the lambda environment, Laravel will not read this since config is already cached.The question is how I can then pass
SQS_QUEUE: ${construct:jobs.queueUrl}
to Laravel configuration keeping pre cached config with all secrets?Beta Was this translation helpful? Give feedback.
All reactions