nebula/monitoring/speedtest.tf
Nemo 137eb3469f
Terraform Upgrade to 1.x (#3)
Co-authored-by: Hashfyre <joy.bhattacherjee@gmail.com>
2021-10-15 12:54:13 +00:00

22 lines
517 B
HCL

# Transmission Exporter for speedtest results
# https://hub.docker.com/r/stefanwalther/speedtest-exporter/
# Built against Alpine: https://github.com/stefanwalther/speedtest-exporter/pull/7
module "speedtest" {
name = "speedtest"
image = "captn3m0/speedtest-exporter:alpine"
source = "../modules/container"
networks = ["monitoring"]
resource = {
memory = 256
memory_swap = 256
}
restart = "unless-stopped"
destroy_grace_seconds = 10
must_run = true
}