I deployed a web service built on Node and then updated it to have a render.yaml file to automatically create some environmental variables. The project has to be deployed and then the environmental variables have to be updated (how it has to be with this project). So, I deployed some variables with placeholders like this:
services:
- type: web
name: sample
env: node
branch: main
buildCommand: npm install
startCommand: node app.js
envVars:
- key: ID
value: <enter-value-here>
However, the environmental variables are not appearing in the environmental settings after the successful redeploy:
Is there an issue with the format of my .yaml
file? Thanks for the help!