Skip to content

Commit b4bed84

Browse files
authored
Merge pull request #170 from dandi/disable-rust-buildpack
Disable Rust buildpack and dyno-metadata feature
2 parents 273ae94 + 8701e23 commit b4bed84

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

terraform/webdav.tf

+4-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ resource "heroku_app" "webdav" {
88
}
99

1010
buildpacks = [
11-
"https://buildpack-registry.s3.amazonaws.com/buildpacks/emk/rust.tgz"
11+
# The Rust application is compiled and pushed to Heroku via a GitHub Action, so
12+
# we don't need to specify a specific buildpack here. So, we just fall back to
13+
# the Heroku CLI buildpack as a default.
14+
"heroku-community/cli"
1215
]
1316
}
1417

@@ -19,12 +22,6 @@ resource "heroku_formation" "webdav_heroku_web" {
1922
quantity = 1
2023
}
2124

22-
# Enable this feature so that the Rust application can access the git commit hash.
23-
resource "heroku_app_feature" "webdav_runtime_dyno_metadata" {
24-
app_id = heroku_app.webdav.id
25-
name = "runtime-dyno-metadata"
26-
}
27-
2825
resource "heroku_domain" "webdav" {
2926
app_id = heroku_app.webdav.id
3027
hostname = "webdav.dandiarchive.org"

0 commit comments

Comments
 (0)