I just created a render account and I’m trying to deploy my first service using a blueprint render.yaml file. I went in the UI and created an environment group called “my-server” and added all of my environment variables to it. I’m trying to reference this in the render.yaml file like so:
envVars:
- key: CELERY_BROKER_URL
fromService:
name: celery-redis
type: redis
property: connectionString
- key: CELERY_RESULT_BACKEND
fromService:
name: celery-redis
type: redis
property: connectionString
- fromGroup: my-server
I want to use the env vars from the redis service being created as well as the ones from my environment group. Whenever I try to go to Blueprints and select my branch it pulls in the render.yaml file and gives me the error “did not find expected key” on the -fromGroup line. I’m sure I’m missing something obvious here but it’s driving me a little crazy. Appreciate the help!