GoogleChrome / webstatus.dev

A tool to monitor and track the status of all Web Platform features across dimensions that are related to availability and implementation quality across browsers, and adoption by web developers.
https://webstatus.dev
Apache License 2.0
92 stars 6 forks source link

Fix: Allow resource limits to be overridden for cloud run job #697

Closed jcscottiii closed 5 days ago

jcscottiii commented 5 days ago

During the refactor of the terraform modules, I created a variable called resource_limits in the job module. It has a default value used across most jobs. However, the wpt job has higher limits. Turns out, the limit declared for the wpt workflow's overridden limits were not being passed down to the job module. (And since there is a default, we don't get an alert that the variable is not present.)

This change fixes that problem to make sure we pass down the resource limit from the workflow module down to the job module in case we want to override the resource limits.