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.
1 parent a71cae8 commit e830037Copy full SHA for e830037
1 file changed
gcp/compute-vm.tf
@@ -33,6 +33,14 @@ module "github-runners-vm-templates" {
33
}
34
35
36
+ scheduling {
37
+ instance_termination_action = "DELETE"
38
+ max_run_duration {
39
+ # https://docs.github.com/en/actions/reference/limits#existing-system-limits
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