Open
Description
Hello, there is no longer a free tier in Heroku. The below line causes the build to fail because this addon does not exist. You can see all the plans in the heroku cli heroku addons:plans heroku-postgresql
. I updated my code to the below and was able to get it working.
resource "heroku_addon" "postgres" {
app = heroku_app.example.id
plan = "heroku-postgresql:essential-0" <-- existing cheapest service
}
Metadata
Metadata
Assignees
Labels
No labels