GHAR rework
This commit is contained in:
parent
5db8662a66
commit
22d2c42b74
2 changed files with 5 additions and 2 deletions
products/github/actions-runner
|
@ -15,5 +15,9 @@ module "github_actions_runner" {
|
||||||
EPHEMERAL = true
|
EPHEMERAL = true
|
||||||
DISABLE_AUTO_UPDATE = "disable_updates"
|
DISABLE_AUTO_UPDATE = "disable_updates"
|
||||||
}
|
}
|
||||||
mounts = { "/var/run/docker.sock" = "/var/run/docker.sock" }
|
mounts = {
|
||||||
|
"/goliath/github/runner" = "/github"
|
||||||
|
"/var/run/docker.sock" = "/var/run/docker.sock"
|
||||||
|
}
|
||||||
|
restart_delay = "30s"
|
||||||
}
|
}
|
|
@ -32,7 +32,6 @@ variable "github_token" {
|
||||||
type = string
|
type = string
|
||||||
description = "The github token to use to register the runner."
|
description = "The github token to use to register the runner."
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pass-thru variables
|
# Pass-thru variables
|
||||||
variable "service_name" {
|
variable "service_name" {
|
||||||
type = string
|
type = string
|
||||||
|
|
Loading…
Reference in a new issue