We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e913d02 + 9934288 commit 4be9c23Copy full SHA for 4be9c23
1 file changed
gcp/compute-vm.tf
@@ -33,6 +33,14 @@ module "github-runners-vm-templates" {
33
}
34
35
36
+ options = {
37
+ termination_action = "DELETE"
38
+ # https://docs.github.com/en/actions/reference/limits#existing-system-limits
39
+ max_run_duration = {
40
+ seconds = (86400 * 5) + 300 # Terminate Instance after 5 days, 5 minutes
41
+ }
42
43
+
44
service_account = {
45
auto_create = false
46
email = module.service-account-compute-vm-github-runners.email
0 commit comments