I’ve got a Rails 7 app which I’ve managed to successfully deploy to Render using a blueprint.
In my blueprint, I’ve configured a web and worker service which both share some env vars from one env group called app-settings
.
Once setup, I added an additional env var to this group in the Render dashboard RAILS_MASTER_KEY
as i don’t want to commit that value into git.
When I deployed a preview app via a PR, Render creates a copy of the app-settings
env group for the PR but it looks like it copies the original definition from the blueprint yaml. I’d expect the preview apps to use the modified env group from the dashboard as I don’t want to have to manually set up the RAILS_MASTER_KEY
every time a preview app is created?