Skip to content

Commit

Permalink
Updated tests to set a current OS / runtime combination (#11380)
Browse files Browse the repository at this point in the history
  • Loading branch information
melinath authored Aug 7, 2024
1 parent 308fdd7 commit 3aff522
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ resource "google_app_engine_flexible_app_version" "<%= ctx[:primary_resource_id]
project = google_project_iam_member.gae_api.project
service = "default"
runtime = "nodejs"
flexible_runtime_settings {
operating_system = "ubuntu22"
runtime_version = "20"
}

entrypoint {
shell = "node ./app.js"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ resource "google_app_engine_flexible_app_version" "{{$.PrimaryResourceId}}" {
project = google_project_iam_member.gae_api.project
service = "default"
runtime = "nodejs"
flexible_runtime_settings {
operating_system = "ubuntu22"
runtime_version = "20"
}

entrypoint {
shell = "node ./app.js"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ resource "google_app_engine_flexible_app_version" "{{$.PrimaryResourceId}}" {
version_id = "v1"
service = "appengine-network-endpoint-group"
runtime = "nodejs"
flexible_runtime_settings {
operating_system = "ubuntu22"
runtime_version = "20"
}

entrypoint {
shell = "node ./app.js"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ resource "google_app_engine_flexible_app_version" "<%= ctx[:primary_resource_id]
version_id = "v1"
service = "appengine-network-endpoint-group"
runtime = "nodejs"
flexible_runtime_settings {
operating_system = "ubuntu22"
runtime_version = "20"
}

entrypoint {
shell = "node ./app.js"
Expand Down

0 comments on commit 3aff522

Please sign in to comment.