Unable to start a new blueprint service

I get the below error.

I have also tried commenting and uncommenting the line about the “plan”

A `render.yaml` file was found, but there was an issue.
services[1].plan
no such plan free for service type web

and the top part of my yaml is:

databases:
  - name: blah-db
    databaseName: blah
    user: blah

services:
  # Django Backend API
  - type: web
    name: blah-backend
    env: python
    # plan: free
    buildCommand: |
      cd backend
      pip install -r requirements.txt
      python manage.py collectstatic --noinput
      python manage.py migrate
    startCommand: |
1 Like

Services are 0 indexed, so it sounds like a problem with the second service you are defining in the render.yaml - if it’s a static site then you don’t need to specify a plan.