Mars Hall
Mars Hall
`Module not found` / `Can't resolve` errors during build are typically due to differences between the committed files and how they are referenced in the code. See: https://github.com/mars/create-react-app-buildpack/issues/71#issuecomment-385723967
Also, I notice you're using https://github.com/timanovsky/subdir-heroku-buildpack.git in this app. Based on what that buildpack does during build (promoting a subdirectory to be the root for build), this may be causing...
I'm unfamiliar with CRACO, but since it is a configuration override tool, it seems likely to lead to problems with this buildpack, which also does some configuration tricks. This buildpack...
[CRACO seems cause issues](https://github.com/mars/create-react-app-buildpack/issues/189#issuecomment-861667126) with create-react-app-buildpack.
In recent Terraform versions, you can [set outputs to `sensitive = true`](https://www.terraform.io/docs/language/values/outputs.html#sensitive-suppressing-values-in-cli-output).
`heroku config:edit` CLI command supports batching of manual config changes, using the [`config-vars` API](https://devcenter.heroku.com/articles/platform-api-reference#config-vars-update). While this doesn't solve the challenge with addon-related config var updates restarting the app, it does...
I was able to get past this error by deleting the `` element containing the offending value: https://github.com/trailheadapps/functions-recipes/blob/main/force-app/main/default/flexipages/Invocation.flexipage-meta.xml#L12-L15 Not sure how this breaks the intended visual layout, but at least...
Unfortunately, the Platform API does not support passing this option as part of Private Space `create` method: https://devcenter.heroku.com/articles/platform-api-reference#space-create https://devcenter.heroku.com/articles/json-schema-for-platform-api I'll look into if that's something that's been overlooked, or actually...
Currently, **building from a `Dockerfile`** is the only Docker container workflow supported by this Terraform provider. See: [`heroku_build` resource](https://www.terraform.io/docs/providers/heroku/r/build.html#building-with-docker). **Releasing an existing container image** is only available in the pre-release...
Until this feature lands in the Pipelines API, it's possible to use this provider's new [Slug resource](https://www.terraform.io/docs/providers/heroku/r/slug.html) to launch an app. Another option to launch Heroku apps from Terraform is...